Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #!/bin/bash
  2. source=$1
  3. destination=$2
  4.  
  5. sudo rsync --archive --one-file-system \
  6. --hard-links --human-readable --inplace --numeric-ids \
  7. --delete --delete-excluded --progress \
  8. --exclude-from=$source/home/ferki/.backup/exclude \
  9. --include-from=$source/home/ferki/.backup/include \
  10. $source $destination
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement