diff --git a/build_watch.sh b/build_watch.sh new file mode 100755 index 0000000..0229273 --- /dev/null +++ b/build_watch.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env sh +main() { + while inotifywait -r -e modify -e create -e delete "./school/"; do + make + done +} + +main