watch.sh 198 B

1234567891011
  1. #!/usr/bin/env 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