tldr/pages/common/cp.md

32 lines
842 B
Markdown
Raw Normal View History

2014-01-28 09:53:43 +00:00
# cp
> Copy files and folders.
2014-01-28 09:53:43 +00:00
- Copy a file to another location:
2014-01-28 09:53:43 +00:00
`cp {{path/to/file.ext}} {{path/to/copy.ext}}`
2014-01-28 09:53:43 +00:00
- Copy a file into another folder, keeping the filename:
2014-01-28 09:53:43 +00:00
`cp {{path/to/file.ext}} {{path/to/target/parent/folder}}`
2014-01-28 09:53:43 +00:00
- Copy a folder recursively to another location:
2014-01-28 09:53:43 +00:00
`cp -r {{path/to/folder}} {{path/to/copy}}`
- Copy a folder recursively into another folder, keeping the folder name:
`cp -r {{path/to/folder}} {{path/to/target/parent/folder}}`
2014-01-28 09:53:43 +00:00
- Copy a folder recursively, in verbose mode (shows files as they are copied):
`cp -vr {{path/to/folder}} {{path/to/copy}}`
- Copy the contents of a folder into another folder:
`cp -r {{path/to/source/folder/*}} {{path/to/target/folder}}`
- Copy text files to another location, in interactive mode (prompts user before overwriting):
2017-04-19 06:18:55 +01:00
`cp -i {{*.txt}} {{path/to/source/}}`