Skip to content

Instantly share code, notes, and snippets.

@skinofstars
Last active December 18, 2015 03:49
Show Gist options
  • Save skinofstars/5720844 to your computer and use it in GitHub Desktop.
Save skinofstars/5720844 to your computer and use it in GitHub Desktop.
Watch files for changes and perform an action. Needs inotify-tools.
#!/bin/bash
# Watch files for changes and perform an action.
# Needs inotify-tools.
function doAction {
./copy-admin-templates.sh;
xdotool search --name chrome key --window %@ F5;
}
while inotifywait -e close_write -r templates/assets/ ; do
doAction
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment