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