notes/build_watch.sh

9 lines
116 B
Bash
Raw Normal View History

#!/usr/bin/env sh
main() {
while inotifywait -r -e modify -e create -e delete "./school/"; do
make
done
}
main