watch.sh 106 B

12345678
  1. #!/bin/bash
  2. echo "Executing Makefile..."
  3. make -k
  4. while inotifywait -r -e modify ./; do
  5. make -k
  6. done