2014-01-28 09:53:43 +00:00
|
|
|
# cp
|
|
|
|
|
2019-02-11 18:00:49 +00:00
|
|
|
> Copy files and directories.
|
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
|
|
|
|
2020-07-25 10:19:46 +01:00
|
|
|
`cp {{path/to/source_file.ext}} {{path/to/target_file.ext}}`
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2019-02-11 18:00:49 +00:00
|
|
|
- Copy a file into another directory, keeping the filename:
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2020-07-25 10:19:46 +01:00
|
|
|
`cp {{path/to/source_file.ext}} {{path/to/target_parent_directory}}`
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2019-04-19 01:54:58 +01:00
|
|
|
- Recursively copy a directory's contents to another location (if the destination exists, the directory is copied inside it):
|
2014-01-28 09:53:43 +00:00
|
|
|
|
2020-07-25 10:19:46 +01:00
|
|
|
`cp -R {{path/to/source_directory}} {{path/to/target_directory}}`
|
2015-12-29 02:11:10 +00:00
|
|
|
|
2019-02-11 18:00:49 +00:00
|
|
|
- Copy a directory recursively, in verbose mode (shows files as they are copied):
|
2016-07-21 13:31:39 +01:00
|
|
|
|
2020-07-25 10:19:46 +01:00
|
|
|
`cp -vR {{path/to/source_directory}} {{path/to/target_directory}}`
|
2016-07-21 13:31:39 +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
|
|
|
|
2019-02-11 18:00:49 +00:00
|
|
|
`cp -i {{*.txt}} {{path/to/target_directory}}`
|
2020-05-13 00:54:45 +01:00
|
|
|
|
|
|
|
- Dereference symbolic links before copying:
|
|
|
|
|
2020-07-25 10:19:46 +01:00
|
|
|
`cp -L {{link}} {{path/to/target_directory}}`
|