watch.sh 189 B

12345678910
  1. #!/bin/sh
  2. hash inotifywait || (echo "Install inotify-tools first"; exit 1)
  3. make
  4. while true; do
  5. inotifywait --quiet --event attrib,modify *.sass *.coffee
  6. sleep 0.05s
  7. make
  8. done