#!/bin/bash cmd="$@" while true; do $cmd inotify_result= while [ -z "$inotify_result" ]; do inotify_result=$(inotifywait -qre close_write ../src | grep -E '\.(cc|h)$') done done