mirror of
https://github.com/cheat/cheat.git
synced 2025-09-08 13:02:54 +02:00
Cherry-picking changes from #185
@zhujian0805 contributed some excellent cheatsheets in #185, but some binary files seem to have gotten mixed into the commit as well. This commit cherry-picks the cheatsheet file changes from that PR while leaving behind the cruft. Also performed minor editing on some of the cheatsheets.
This commit is contained in:
@ -1,6 +1,14 @@
|
||||
# copy files from remote to local, maintaining file propertires and sym-links (-a), zipping for faster transfer (-z), verbose (-v).
|
||||
# To copy files from remote to local, maintaining file properties and sym-links (-a), zipping for faster transfer (-z), verbose (-v).
|
||||
rsync -avz host:file1 :file1 /dest/
|
||||
rsync -avz /source host:/dest
|
||||
|
||||
# Copy files using checksum (-c), rather than time, to detect if the file has changed. (Useful for validating backups).
|
||||
# Copy files using checksum (-c) rather than time to detect if the file has changed. (Useful for validating backups).
|
||||
rsync -avc /source/ /dest/
|
||||
|
||||
# Copy contents of /src/foo to destination:
|
||||
|
||||
# This command will create /dest/foo if it does not already exist
|
||||
rsync -auv /src/foo /dest
|
||||
|
||||
# Explicitly copy /src/foo to /dest/foo
|
||||
rsync -auv /src/foo/ /dest/foo
|
||||
|
Reference in New Issue
Block a user