Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I want a quick and simple way to execute a command whenever a file changes. I want something very simple, something I will leave running on a terminal and close it whenever I'm finished working with that file.

Currently, I'm using this:

while read; do ./myfile.py ; done

And then I need to go to that terminal and press Enter, whenever I save that file on my editor. What I want is something like this:

while sleep_until_file_has_changed myfile.py ; do ./myfile.py ; done

Or any other solution as easy as that.

BTW: I'm using Vim, and I know I can add an autocommand to run something on BufWrite, but this is not the kind of solution I want now.

Update: I want something simple, discardable if possible. What's more, I want something to run in a terminal because I want to see the program output (I want to see error messages).

About the answers: Thanks for all your answers! All of them are very good, and each one takes a very different approach from the others. Since I need to accept only one, I'm accepting the one that I've actually used (it was simple, quick and easy-to-remember), even though I know it is not the most elegant.

share|improve this question

10 Answers

up vote 51 down vote accepted

Simple, using inotifywait:

while inotifywait -e close_write myfile.py; do ./myfile.py; done

This has a big limitation: if some program replaces myfile.py with a different file, rather than writing to the existing myfile, inotifywait will die. Most editors work that way.

To overcome this limitation, use inotifywait on the directory:

while true; do
  change=$(inotifywait -e close_write,moved_to,create .)
  change=${change#./ * }
  if [ "$change" = "myfile.py" ]; then ./myfile.py; fi
done
share|improve this answer
4  
I've encapsulated all of this (with quite a few bash tricks) in a simple-to-use sleep_until_modified.sh script, available at: bitbucket.org/denilsonsa/small_scripts/src – Denilson Sá Aug 30 '10 at 0:57
while sleep_until_modified.sh derivation.tex ; do latexmk -pdf derivation.tex ; done is fantastic. Thank you. – Rhys Ulerich Dec 15 '11 at 16:49
inotifywait does not play well with temporary files. If you save a file with vim (:w) you'll get 2 CREATE and DELETE signals, as well as 2 MOVE signals. stackoverflow.com/questions/10527936/… – puk May 10 '12 at 22:30

I wrote a Python program to do exactly this called when-changed.

Usage is simple:

when-changed FILE COMMAND...

Or to watch multiple files:

when-changed FILE [FILE ...] -c COMMAND
share|improve this answer
nice simple script! – heinrich5991 Aug 31 '12 at 17:16
does it work when the file is replaced like the editors do? – Janus Troelsen Oct 11 '12 at 12:57
1  
@ysangkok yes it does, in the latest version of the code :) – joh Oct 11 '12 at 16:35
4  
As much as an interesting approach this is - I will have to down vote. This is essentially an infinite loop checking the time of the file every half second. inotifywait is a MUCH better solution as it relies on the kernel to tell it that a file was changed instead of the date on the file. Windows also has a very similar API. – Nathan Adams Nov 11 '12 at 22:35

Solution using Vim:

:au BufWritePost myfile.py :silent !./myfile.py

But I don't want this solution because it's kinda annoying to type, it's a bit hard to remember what to type, exactly, and it's a bit difficult to undo its effects (need to run :au! BufWritePost myfile.py). In addition, this solution blocks Vim until the command has finished executing.

I've added this solution here just for completeness, as it might help other people.

To display the program output (and completely disrupt your editting flow, as the output will write over your editor for a few seconds, until you press Enter), remove the :silent command.

share|improve this answer

Here's a simple shell Bourne shell script that:

  1. Takes two arguments: the file to be monitored and a command (with arguments, if necessary)
  2. Copies the file you are monitoring to the /tmp directory
  3. Checks every two seconds to see if the file you are monitoring is newer than the copy
  4. If it's newer it overwrites the copy with the newer original and executes the command
  5. Cleans up after itself when you press Ctr-C

    #!/bin/sh  
    f=$1  
    shift  
    cmd=$*  
    tmpf="`mktemp /tmp/onchange.XXXXX`"  
    cp "$f" "$tmpf"  
    trap "rm $tmpf; exit 1" 2  
    while : ; do  
        if [ "$f" -nt "$tmpf" ]; then  
            cp "$f" "$tmpf"  
            $cmd  
        fi  
        sleep 2  
    done  
    

This works on FreeBSD. The only portability issue I can think of is if some other Unix doesn't have the mktemp(1) command, but in that case you can just hard code the temp file name.

share|improve this answer
3  
Polling is the only portable way, but most systems have a file change notification mechanism (inotify on Linux, kqueue on FreeBSD, ...). You have a severe quoting problem when you do $cmd, but fortunately that's easily fixable: ditch the cmd variable and execute "$@". Your script is not suitable for monitoring a large file, but that could be fixed by replacing cp by touch -r (you only need the date, not the contents). Portability-wise, the -nt test requires bash, ksh or zsh. – Gilles Aug 27 '10 at 22:22

Have a look at incron. It's similar to cron, but uses inotify events instead of time.

share|improve this answer

For future visitors, if you happen to have npm installed, nodemon is probably the easiest way to get started, especially on OS X, which apparently doesn't have inotify tools. It supports running a command when a folder changes.

share|improve this answer
However, it only watches .js and .coffee files. – cormacrelf Jul 20 '12 at 10:27
The current version seems to support any command, for example: nodemon -x "bundle exec rspec" spec/models/model_spec.rb -w app/models -w spec/models – kek Apr 10 at 15:15

A little more on the programming side, but you want something like inotify. There are implementations in many languages, such as jnotify and pyinotify.

This library allows you to monitor single files or entire directories, and returns events when an action is discovered. The information returned includes the file name, the action (create, modify, rename, delete) and the file path, among other useful information.

share|improve this answer

If your program generates some sort of log/output, you can create a Makefile with a rule for that log/output that depends on your script and do something like

while true; do make -s my_target; sleep 1; done

Alternately, you can create a phony target and have the rule for it both call your script and touch the phony target (while still depending on your script).

share|improve this answer
5  
while sleep 1 ; do something ; done is slightly better than while true ; do something ; sleep 1 ; done. At least it stops easily when pressing Ctrl+C. – Denilson Sá Aug 28 '10 at 4:59
Will removing the sleep cause a busy loop (CPU generating heat and hurting battery life on a laptop)? – Steven Lu Jul 12 '12 at 4:52
1  
@StevenLu: no, the sleep is not a busy wait. The problem is that if the sleep is in the body, Control-C will kill the sleep and the loop will start over. Power usage of starting the loop over is insignificant. Try it yourself in a terminal. You need to hold Control-C for it to work, if you have sleep in the body. – Janus Troelsen Sep 19 '12 at 11:25
Right. I think I missed it and didn't see that the sleep is still present as the loop condition. That little tweak is pretty awesome. – Steven Lu Sep 19 '12 at 17:55

In Linux:

man watch

watch -n 2 command_to_run

will run the command every 2 seconds.

share|improve this answer

For those of you who's looking for FreeBsd solution here is the port: /usr/ports/sysutils/wait_on.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.