2023-08-21 22:16:45 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
if [[ "$1" == "" || "$2" == "" ]]; then
|
|
|
|
echo "usage: ${0##*/} <file> <command>";
|
|
|
|
exit 2;
|
|
|
|
fi
|
|
|
|
|
2023-08-22 22:05:06 +00:00
|
|
|
set -uo pipefail
|
2023-08-21 22:16:45 +00:00
|
|
|
|
|
|
|
while true; do
|
|
|
|
inotifywait \
|
|
|
|
--event modify \
|
|
|
|
--event move_self \
|
2023-10-03 17:14:37 +00:00
|
|
|
--exclude ".git|simpletest|vendor" \
|
2023-08-21 22:16:45 +00:00
|
|
|
--recursive \
|
|
|
|
$1 && $2
|
|
|
|
done
|