Skip to content

Instantly share code, notes, and snippets.

@arusso
Created April 11, 2012 09:45
Show Gist options
  • Save arusso/2358292 to your computer and use it in GitHub Desktop.
Save arusso/2358292 to your computer and use it in GitHub Desktop.
WAIT_TIME=15 # in minutes
OUT=`find . -mmin -${WAIT_TIME} | grep restart`
if [ "$OUT" == "" ]; then
# we haven't committed murder in $WAIT_TIME minutes, lets do it again
/bin/kill -f `ps ux -W | grep srcd | awk '{print $1}'`
# touch our breadcrumb
touch restart
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment