Skip to content

Instantly share code, notes, and snippets.

@blaxter
Last active August 29, 2015 14:02
Show Gist options
  • Save blaxter/9121ef3fb320931a49ea to your computer and use it in GitHub Desktop.
Save blaxter/9121ef3fb320931a49ea to your computer and use it in GitHub Desktop.
sync files one way
# sudo aptitude install inotify-tools
[email protected]
SOURCE=source_dir
TARGET=target_dir
while inotifywait -r $SOURCE ; do
rsync -avz $SOURCE $DEST:$TARGET
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment