Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

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