Sunday, January 5, 2020

rsync


rsync options source destination

  1. -v : verbose
  2. -r : copies data recursively (but don’t preserve timestamps and permission while transferring data
  3. -a : archive mode, archive mode allows copying files recursively and it also preserves symbolic links, file permissions, user & group ownerships and timestamps
  4. -z : compress file data
  5. -h : human-readable, output numbers in a human-readable format

Examples at
https://www.tecmint.com/rsync-local-remote-file-synchronization-commands/

Local file test at
https://superuser.com/questions/544436/rsync-between-two-local-directories

No comments:

Post a Comment