]> git.somenet.org - tools/homesync.git/blob - homestore.sh
recreated repo without passwords
[tools/homesync.git] / homestore.sh
1 #!/bin/bash
2
3 SLEEPTIME=5
4 echo "Will sync ${HOME} TO server in ${SLEEPTIME} sec..."
5 sleep $SLEEPTIME
6 rsync -aHAxv --delete --progress --sparse --exclude='/.**' --exclude='/Downloads' \
7       --exclude='/sync.opera/cache/**' --exclude='/sync.opera/application_cache/**' --exclude='/sync.opera/icons/**' \
8       "${HOME}/" -e 'ssh -p666' "dev.somenet.org:HOMESYNC_DATA/"
9