watch.sh 237 B

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