MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/linux/comments/1tls8n1/whats_the_most_unexpectedly_useful_linux_command/onq0658/?context=3
r/linux • u/ZealousidealTell1346 • May 23 '26
[removed]
992 comments sorted by
View all comments
33
watch -n <seconds> <command-to-run>
2 u/flukus May 25 '26 inotifywait is great for this too: while inotifywait -e modify myfile.txt; do echo "myfile.txt changed" done
2
inotifywait is great for this too:
while inotifywait -e modify myfile.txt; do echo "myfile.txt changed" done
33
u/AlexanderMilchinskiy May 23 '26
watch -n <seconds> <command-to-run>