Move pages back into a "pages" folder

This commit is contained in:
rprieto
2014-03-04 23:28:29 +11:00
parent 0a4c0f0a37
commit f00bf64426
99 changed files with 0 additions and 0 deletions

21
pages/common/cp.md Normal file
View File

@@ -0,0 +1,21 @@
# cp
> Copy files
- Copy files in arbitrary locations
`cp {{/path/to/original}} {{/path/to/copy}}`
- Copy a file to a parent directory
`cp {{/path/to/original}} ../{{/path/to/copy}}`
- Copy directories recursive using the option -r. Optionally showing files as they are copied.
`cp -r {{/path/to/original}} {{/path/to/copy}}`
`cp -vr {{/path/to/original}} {{/path/to/copy}}`
- Make a copy of a file adding and extension or changing an extension
`cp {{file.html}}\{,.backup\}`
`cp file.\{html,backup\}`