Last active
December 18, 2015 03:49
-
-
Save skinofstars/5720844 to your computer and use it in GitHub Desktop.
Watch files for changes and perform an action. Needs inotify-tools.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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