2014-01-28 09:53:43 +00:00
|
|
|
# cp
|
|
|
|
|
2016-07-21 13:31:39 +01:00
|
|
|
> Copy files and folders.
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2016-07-21 13:31:39 +01:00
|
|
|
- Copy a file to another location:
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2017-04-18 22:47:41 +01:00
|
|
|
`cp {{path/to/file.ext}} {{path/to/copy.ext}}`
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2016-07-21 13:31:39 +01:00
|
|
|
- Copy a file into another folder, keeping the filename:
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2018-10-28 09:59:03 +00:00
|
|
|
`cp {{path/to/file.ext}} {{path/to/target_parent_folder}}`
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2016-07-21 13:31:39 +01:00
|
|
|
- Copy a folder recursively to another location:
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2017-04-18 22:47:41 +01:00
|
|
|
`cp -r {{path/to/folder}} {{path/to/copy}}`
|
2015-12-29 02:11:10 +00:00
|
|
|
|
2016-07-21 13:31:39 +01:00
|
|
|
- Copy a folder recursively, in verbose mode (shows files as they are copied):
|
|
|
|
|
2017-04-18 22:47:41 +01:00
|
|
|
`cp -vr {{path/to/folder}} {{path/to/copy}}`
|
2016-07-21 13:31:39 +01:00
|
|
|
|
|
|
|
- Copy the contents of a folder into another folder:
|
|
|
|
|
2018-10-28 09:59:03 +00:00
|
|
|
`cp -r {{path/to/source_folder/*}} {{path/to/target_folder}}`
|
2017-04-18 22:47:41 +01:00
|
|
|
|
2017-04-18 22:51:29 +01:00
|
|
|
- Copy text files to another location, in interactive mode (prompts user before overwriting):
|
2017-04-18 22:47:41 +01:00
|
|
|
|
2018-10-28 09:59:03 +00:00
|
|
|
`cp -i {{*.txt}} {{path/to/target_folder}}`
|