#!/bin/sh while true; do go build main.go ./main & PID=$! inotifywait --exclude 'attachments|/\..+' -r -e modify . kill $PID done