mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-02 05:17:58 +01:00
Merge pull request #415 from appleboy/patch-2
Fix file format ref: #402
This commit is contained in:
commit
a9ad6d62a9
1 changed files with 11 additions and 5 deletions
|
@ -8,14 +8,20 @@
|
|||
|
||||
- Copy a file to a parent directory
|
||||
|
||||
`cp {{/path/to/original}} ../{{/path/to/copy}}`
|
||||
`cp {{/path/to/original}} ../{{path/to/copy}}`
|
||||
|
||||
- Copy directories recursive using the option -r. Optionally showing files as they are copied.
|
||||
- Copy directories recursive using the option -r
|
||||
|
||||
`cp -r {{/path/to/original}} {{/path/to/copy}}`
|
||||
|
||||
- Show files as they are copied
|
||||
|
||||
`cp -vr {{/path/to/original}} {{/path/to/copy}}`
|
||||
|
||||
- Make a copy of a file adding and extension or changing an extension
|
||||
- Make a copy of a file, adding an extension
|
||||
|
||||
`cp {{file.html}}\{,.backup\}`
|
||||
`cp file.\{html,backup\}`
|
||||
`cp {{file.html}}{,.backup}`
|
||||
|
||||
- Make a copy of a file, changing the extension
|
||||
|
||||
`cp {{file.}}{html,backup}`
|
||||
|
|
Loading…
Reference in a new issue