Advertisement
Guest User

Untitled

a guest
Sep 6th, 2017
476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. mnt/xlses/split/v2/name with space
  2.  
  3. mnt/xlses/split/v2/name with space
  4.  
  5. rsync --size-only -avzPe ssh /mnt/xlses/split/v2/name with space/ root@myserver.com:/mnt/xlses/split/v2/"name with space"
  6.  
  7. mnt/xlses/split/v2/name
  8.  
  9. mnt/xlses/split/v2/name with space
  10.  
  11. rsync --size-only -avzPe ssh /mnt/xlses/split/v2/name with space root@myserver.com:/mnt/xlses/split/v2/
  12.  
  13. rsync --protect-args --size-only -avzPe ssh "/mnt/xlses/split/v2/name with space/ "root@myserver.com:/mnt/xlses/split/v2/name with space"
  14.  
  15. rsync -avuz me@some.server.com:"/media/Music/Heavy Metal/Witch Mountain/*" .
  16.  
  17. rsync -avuz me@some.server.com:"${remote_path// /\ }" .
  18.  
  19. rsync --size-only -avzPe ssh /mnt/xlses/split/v2/name with space/ root@myserver.com:/mnt/xlses/split/v2/name*
  20.  
  21. rsync --size-only -avzPe ssh "/mnt/xlses/split/v2/name with space/" "root@myserver.com:/mnt/xlses/split/v2/name with space"
  22.  
  23. rsync -avu /media/data/The Folder* .
  24.  
  25. rsync -avu -e ssh you@domain.com:"/media/data/The Folder*" .
  26.  
  27. user@remote$ ln -s ~/name with space/ ~/name_with_space
  28.  
  29. user@local$ rsync -avz -L user@remote:~/name_with_space/ ~/name with space
  30.  
  31. rsync /mnt/xlses/split/v2/name\ with\ space/ root@myserver.com:/mnt/xlses/split/v2/name\ with\ space
  32.  
  33. find /path/ -exec rsync -A -X -av -r -s root@xxxx:/path/ {} ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement