watch.sh 107 B

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