Created cheatsheets for alias, cat, cp, export, kill, mv, pwd, and wc

This commit is contained in:
shanahanjrs
2017-02-12 22:11:45 -05:00
parent 8cad76943a
commit aa9403d432
8 changed files with 64 additions and 0 deletions

14
cheat/cheatsheets/cp Normal file
View File

@ -0,0 +1,14 @@
# cp - copy. Copies a file or directory
cp [-a, -f, -H, -i, -L, -n, -p, -P, -R, -X] [-v] [source] [target]
-a : Same as -pPR
-f : Force
-H : Follow sym links
-i : Prompt before overwrite
-L : If -R, follow sym links
-n : Do not overwrite
-P : If -R, Do not follow sym links (Default)
-p : Preserve meta data
-R : Recursive (cp directories)
-X : Do not copy extended attributes or resource forks
-v : Verbose