Last active
January 30, 2018 10:37
-
-
Save icchy/6293952df18ae4db6af3a59906d336d4 to your computer and use it in GitHub Desktop.
rsync with fswatch
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
#!/bin/sh | |
remote_dir=host:path/to/remote/dir | |
local_dir=path/to/local/dir | |
usage () { | |
echo "usage: $0 [pull|push|sync]" >&2 | |
} | |
check () { | |
which fswatch >/dev/null || (echo "fswatch not found"; exit 1) | |
which rsync >/dev/null || (echo "rsync not found"; exit 1) | |
} | |
pull () { | |
rsync -avz -u -e ssh $remote_dir `dirname $local_dir` | |
} | |
push () { | |
rsync -avz -u --delete --exclude ".git/" -e ssh $local_dir `dirname $remote_dir` | |
} | |
check | |
case $1 in | |
pull) | |
pull | |
;; | |
push) | |
push | |
;; | |
sync) | |
# pull | |
fswatch -e "\.git/" -o $local_dir | while read $line; do | |
push | |
done | |
;; | |
*) | |
usage | |
exit 1 | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment