tldr/common/cp.md

22 lines
513 B
Markdown
Raw Normal View History

2014-01-28 09:53:43 +00:00
# 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.
2014-01-28 09:53:43 +00:00
`cp -r {{/path/to/original}} {{/path/to/copy}}`
`cp -vr {{/path/to/original}} {{/path/to/copy}}`
2014-01-28 09:53:43 +00:00
- Make a copy of a file adding and extension or changing an extension
2014-01-28 09:53:43 +00:00
`cp {{file.html}}\{,.backup\}`
`cp file.\{html,backup\}`