Skip to content

Instantly share code, notes, and snippets.

@jkassemi
Created October 18, 2013 00:47
Show Gist options
  • Save jkassemi/7034805 to your computer and use it in GitHub Desktop.
Save jkassemi/7034805 to your computer and use it in GitHub Desktop.
Watch files, make. Easy.
# https://news.ycombinator.com/item?id=6568137
inotifywait -m -e modify,close_write,move,move_self,create,delete,delete_self -r . | while read; do make; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment