Para supervisar un archivo en Linux, puedo utilizar inotify-herramientas como estacómo lograr métodos-herramientas inotify shell de Linux en OSX
#!/bin/bash
# with inotify-tools installed, watch for modification of file passed as first param
while inotifywait -e modify $1; do
# do something here
done
pero ¿cómo iba a lograr esto en OSX?
¿se puede utilizar esto en shell script? –
No, pero hay una biblioteca contenedora para python: http://pypi.python.org/pypi/MacFSEvents/0.2.4 – Baversjo