benhoskings / fswatch forked from alandipert/fswatch
- Source
- Commits
- Network (2)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
fswatch /
| name | age | message | |
|---|---|---|---|
| |
Makefile | Thu Jun 25 17:09:53 -0700 2009 | |
| |
README | Thu Jun 25 18:06:09 -0700 2009 | |
| |
fswatch.c |
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.

