Skip to content

Instantly share code, notes, and snippets.

@xydac
Created October 17, 2018 00:34
Show Gist options
  • Save xydac/e479195f44f6c1cd9d243a44199a53d4 to your computer and use it in GitHub Desktop.
Save xydac/e479195f44f6c1cd9d243a44199a53d4 to your computer and use it in GitHub Desktop.
rsync directory on recursive file changes
# requires sudo apt-get install inotify-tools
cd /sourcepath
while inotifywait -r ./*; do
rsync -e 'ssh -p 245' --exclude='.git/' -rzuv ./ [email protected]:/destination
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment