-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…nchange.sh
- Loading branch information
Showing
2 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/bin/bash | ||
# | ||
# Watch current directory (recursively) for file changes, and execute | ||
# a command when a file or directory is created, modified or deleted. | ||
# | ||
# Written by: Senko Rasic <[email protected]> | ||
# | ||
# Requires Linux, bash and inotifywait (from inotify-tools package). | ||
# | ||
# To avoid executing the command multiple times when a sequence of | ||
# events happen, the script waits one second after the change - if | ||
# more changes happen, the timeout is extended by a second again. | ||
# | ||
# Installation: | ||
# chmod a+rx onchange.sh | ||
# sudo cp onchange.sh /usr/local/bin | ||
# | ||
# Example use - rsync local changes to the remote server: | ||
# | ||
# onchange.sh rsync -avt . host:/remote/dir | ||
# | ||
# Released to Public Domain. Use it as you like. | ||
# | ||
|
||
EVENTS="CREATE,CLOSE_WRITE,DELETE,MODIFY,MOVED_FROM,MOVED_TO" | ||
|
||
if [ -z "$1" ]; then | ||
echo "Usage: $0 cmd ..." | ||
exit -1; | ||
fi | ||
|
||
inotifywait -e "$EVENTS" -m -r --format '%:e %f' . | ( | ||
WAITING=""; | ||
while true; do | ||
LINE=""; | ||
read -t 1 LINE; | ||
if test -z "$LINE"; then | ||
if test ! -z "$WAITING"; then | ||
echo "CHANGE"; | ||
WAITING=""; | ||
fi; | ||
else | ||
WAITING=1; | ||
fi; | ||
done) | ( | ||
while true; do | ||
read TMP; | ||
echo $@ | ||
$@ | ||
done | ||
) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/bin/bash | ||
# | ||
# Watch current directory (recursively) for file changes, and execute | ||
# a command when a file or directory is created, modified or deleted. | ||
# | ||
# Written by: Senko Rasic <[email protected]> | ||
# | ||
# Requires Linux, bash and inotifywait (from inotify-tools package). | ||
# | ||
# To avoid executing the command multiple times when a sequence of | ||
# events happen, the script waits one second after the change - if | ||
# more changes happen, the timeout is extended by a second again. | ||
# | ||
# Installation: | ||
# chmod a+rx onchange.sh | ||
# sudo cp onchange.sh /usr/local/bin | ||
# | ||
# Example use - rsync local changes to the remote server: | ||
# | ||
# onchange.sh rsync -avt . host:/remote/dir | ||
# | ||
# Released to Public Domain. Use it as you like. | ||
# | ||
|
||
EVENTS="CREATE,CLOSE_WRITE,DELETE,MODIFY,MOVED_FROM,MOVED_TO" | ||
|
||
if [ -z "$1" ]; then | ||
echo "Usage: $0 cmd ..." | ||
exit -1; | ||
fi | ||
|
||
inotifywait -e "$EVENTS" -m -r --format '%:e %f' . | ( | ||
WAITING=""; | ||
while true; do | ||
LINE=""; | ||
read -t 1 LINE; | ||
if test -z "$LINE"; then | ||
if test ! -z "$WAITING"; then | ||
echo "CHANGE"; | ||
WAITING=""; | ||
fi; | ||
else | ||
WAITING=1; | ||
fi; | ||
done) | ( | ||
while true; do | ||
read TMP; | ||
echo $@ | ||
$@ | ||
done | ||
) |