Skip to content
/ rrcp Public

RRCP - rsync copier with checksum verification

License

Notifications You must be signed in to change notification settings

weenchvd/rrcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

RRCP - rsync copier with checksum verification

Usage: rrcp [-cxqutdP] SRC [SRC]... DEST

Options:
  -c        clone (mirror)
  -x        use delta-xfer algorithm
  -q        quiet (less output)
  -u        mention unchanged names (more output)
  -t        without test (without post-check)
  -d        do (disable DRY RUN)
  -P        print rsync command, do nothing

Examples

Copy (dry-run - nothing will be copied) the contents of the src directory to the dest directory:

rrcp ~/src/ ~/dest/

Copy (dry-run - nothing will be copied) the src directory to the dest directory:

rrcp ~/src ~/dest/

Copy the src directory to the dest directory:

rrcp -d ~/src ~/dest/

Copy the name with spaces directory to the dest directory:

rrcp -d "~/name with spaces" ~/dest/

Copy the directories src1, src2, src3 to the directory dest:

rrcp -d ~/src1 ~/src2 ~/src3 ~/dest/

Copy (do nothing, just print the full rsync command) the src directory to the dest directory:

rrcp -dP ~/src ~/dest/

Clone (delete extraneous files from dest dirs) the src directory to the dest directory:

rrcp -cd ~/src ~/dest/

About

RRCP - rsync copier with checksum verification

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages