Skip to content

Instantly share code, notes, and snippets.

@thbkrkr
Created January 24, 2012 23:15
Show Gist options
  • Save thbkrkr/1673408 to your computer and use it in GitHub Desktop.
Save thbkrkr/1673408 to your computer and use it in GitHub Desktop.
rsync dir between two machines
#!/bin/bash
#
# rsync.sh /media/miam/photos bknt@192.168.0.1:/media/miam/sync_patate/photos
SRC=$1
DEST=$2
# rsync -e ssh -avz --delete-after
rsync -e ssh -avz $SRC $DEST
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment