Skip to content

Instantly share code, notes, and snippets.

@iegik
Created March 30, 2016 08:09
Show Gist options
  • Select an option

  • Save iegik/d75973f69aa2552ac6633aecafd4efd2 to your computer and use it in GitHub Desktop.

Select an option

Save iegik/d75973f69aa2552ac6633aecafd4efd2 to your computer and use it in GitHub Desktop.
Example of watching file and executing command on modify event
#!/bin/bash
while inotifywait -e modify application/views/html/**/*; do make templates; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment