benhoskings / fswatch forked from alandipert/fswatch

Monitor a directory for changes and run a shell command, using OS X's FSEvents API

This URL has Read+Write access

name age message
file Makefile Thu Jun 25 17:09:53 -0700 2009 a makefile, why not [alandipert]
file README Thu Jun 25 18:06:09 -0700 2009 update readme [alandipert]
file fswatch.c Loading commit data...
README
fswatch.c

This is a small program using the Mac OS X FSEvents API to monitor a directory.
When an event about any change to that directory is received, the specified
shell command is executed by /bin/bash.

usage:

  > ./fswatch /some/dir "echo changed" 

This would monitor /some/dir for any change, and run `echo changed` when
a modification event is received.

fswatch passes along the parent processes' environment, so you can do things
like this:

  > fswatch components/ "~/local/bin/componentize.rb components/ > resources/components.js"

compile:

You'll need the OS X Developer Tools installed on 10.5 or higher.

  > make

This code was adapted from the example program in the FSEvents API pdf.