I've been brushing up my CV recently and this time have made the effort to do it in Latex. I usually do Latex stuff with vim as my text editor and and excellent PDF reader for OS X called Skim. [caption id="" align="aligncenter" width="500" caption="vim and Skim tiled"][/caption] Skim is able to detect, when the currently loaded PDF is being changed on disk and can automatically reload it. However, one slightly annoying problem I encountered was that I had to Alt-Tab to a terminal and run the Latex compiler after saving the .tex file. What I really wanted was to be able to run the compiler automatically when a file in the current directory is changed.

runonsave.py

Trusty old Python came to the rescue: I wrote a little script that recursively  scans the current directory every 5 seconds and executes an arbitrary command, when a file has been changed since the last scan. You can install it with the following one liner (I'm assuming ~/bin exists and is on your PATH):
cd ~/bin && wget http://github.com/leonardehrenfried/runonsave/raw/master/runonsave.py && chmod +x runonsave.py
If you want to watch the current directory for changes and and then run the Latex compiler simply do a
runonsave.py pdflatex cv.tex
This works with any command - not only with Latex. One other use case I could think of was regenerating your image sprites when you have saved an image and all sorts of other asset packing. The script also automatically ignores common SCM folders. Just be careful if you are watching a huge directory tree; in this case you probably want to lower the time between scans. (At the moment this time is hard-coded in but I'm planning to use optparse in the future). The script also has a repository on Github. If you have any improvements, for example using a better way to figure out if something has changed, go ahead and fork it.