Skip to content

Instantly share code, notes, and snippets.

View agundy's full-sized avatar

Aaron Gunderson agundy

View GitHub Profile
@agundy
agundy / roc.sh
Last active August 29, 2015 13:57 — forked from seveibar/roc.bash
while [ 1 ]; do
clear\
&& echo "[Running \"$@\" on files changes in $(pwd) at $(date +'%r')]"\
&& echo ""\
&& sleep .1\
&& $@ \
&& sleep .3;
inotifywait -r -q -e modify,move,create .;
done