Merge pull request #151 from carlu/master

Cheatsheets added for a couple of my favourite commands:
This commit is contained in:
Chris Lane 2014-03-19 22:28:02 -04:00
commit 0ba36baa48
2 changed files with 8 additions and 0 deletions

2
cheatsheets/indent Normal file
View File

@ -0,0 +1,2 @@
# format C/C++ source according to the style of Kernighan and Ritchie (K&R), no tabs, 3 spaces per indent, wrap lines at 120 characters.
indent -i3 -kr -nut -l120

6
cheatsheets/rsync Normal file
View File

@ -0,0 +1,6 @@
# copy files from remote to local, maintaining file propertires 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).
rsync -avc /source/ /dest/