translated

This commit is contained in:
onionstalgia 2023-08-09 21:28:12 +08:00
parent 4bbd74da28
commit 69c587250f
2 changed files with 185 additions and 185 deletions

View File

@ -1,185 +0,0 @@
[#]: subject: "Using cp Command in Linux"
[#]: via: "https://itsfoss.com/cp-command/"
[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/"
[#]: collector: "lkxed"
[#]: translator: " "
[#]: reviewer: " "
[#]: publisher: " "
[#]: url: " "
Using cp Command in Linux
======
The cp command is one of the essential Linux commands you probably will be using on a regular basis.
As the name indicates, cp stands for copy and it is used for [copying files and directories in Linux command line][1].
It's one of the simpler commands with only a few options but that doesn't mean you cannot know more about it.
Before you see some practical examples of the cp command, I advise getting familiar with the concept of absolute and relative paths because you'll need to use them while copying files from one place to another.
### Copy a file
The simplest and most common use of the cp command is for copying files. For that, you just have to specify the source file and the destination where you want to 'paste' the file.
```
cp source_file destination_directory
```
![Copy a file from the source directory to a destination][2]
### Rename the file while copying it
You can also [rename the file][3] while copying it to another location. This is like those 'save as' options you see in text editors.
For this, you must mention the new file name along with the path.
```
cp source_file destination_directory/new_filename
```
![Rename the file while copying][4]
### Copy multiple files
You can also copy multiple files to another location.
```
cp file1 file2 file3 destination_directory
```
![Copy multiple files, with destination directory at the end][5]
You cannot rename files in this case.
Of course, you can use wildcard expansion and copy files of a certain type to another location:
```
cp *.txt destination_directory
```
![Copy multiple files with Wildcard expansion, which is all files with .txt extension][6]
### Avoid overwriting while copying files
If you are copying file1.txt to a directory where there already exists a file named file1.txt, it will be overwritten with the file you are copying.
You may not always want that. This is why the cp command provides several options to deal with overwriting.
The firstmost is the interactive mode with the option `-i`. In the interactive mode, it will ask you to confirm or deny the overwriting of the destination file.
```
cp -i source_file destination_directory
cp: overwrite 'destination_directory/source_file'?
```
Press Y to overwrite and N to skip copying the file.
![Overwrite, but ask interactively (content overwritten)][7]
![Overwrite, but ask interactively (content is NOT overwritten)][8]
The option `-n` negates overwriting completely. Destination files won't be overwritten with this option.
```
cp -n source_file destination_directory
```
![Negated Overwriting (content of the file inside the directory has not changed)][9]
There is also an option `-b` for automatically creating a backup if the destination file is going to be overwritten. B stands for backup, I presume.
```
cp -b source_file destination_directory
```
![Overwriting a file, but with a backup file appended by '~'][10]
And lastly, there is the 'update' option `-u` which will overwrite the destination file if it is older than the source file or if it destination file does not exist.
```
cp -u source_file destination_directory
```
![The newer file is overwritten into the older file][11]
### Copy directories (folders)
The cp command is also used for [copy directories in the Linux command line][12].
You need to use the recursive option `-r` for copying directories.
```
cp -r source_dir destination_dir
```
![Copy a directory using cp command in Linux][13]
You can also copy multiple directories to another location:
```
cp -r dir1 dir2 dir3 target_directory
```
![Copying multiple directories using cp command][14]
### Preserve attributes while copying
When you copy a file to another location, its [timestamp][15], [file permission][16] and even ownership gets changed.
That's the normal behavior. But in some cases, you may want to preserve the original attribute even when you are copying the file.
To preserve the attributes, use the option `-p`:
```
cp -p source_file destination_directory
```
![][17]
> 💡 There is also`-a`option for archive mode. It will preserve even the ACLs.
### 🏋️ Exercise time
Want to practice the cp command a little? Here are some simple exercises for you.
- Open a terminal and create a directory named `practice_cp`
- Now, copy the /etc/services file in this newly created directory.
- Make some minor changes to the copied services file in practice directory.
- Now, copy /etc/services file again but in update mode. Does it change anything? Observe.
- Look into /var/log directory and copy the log files that start with mail into your practice directory
- Now, go back to your home directory and create a new directory named new_dir (well, I couldn't think of any better)
- Copy the practice_cp directory to new_dir
That should be good enough exercise for you. Enjoy learning Linux commands with It's FOSS.
--------------------------------------------------------------------------------
via: https://itsfoss.com/cp-command/
作者:[Abhishek Prakash][a]
选题:[lkxed][b]
译者:[译者ID](https://github.com/译者ID)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://itsfoss.com/author/abhishek/
[b]: https://github.com/lkxed/
[1]: https://itsfoss.com/copy-files-directory-linux/
[2]: https://itsfoss.com/content/images/2023/07/cp_2.png
[3]: https://learnubuntu.com:443/rename-files/
[4]: https://itsfoss.com/content/images/2023/07/cp_rename.png
[5]: https://itsfoss.com/content/images/2023/07/cp_multiple_files-1.png
[6]: https://itsfoss.com/content/images/2023/07/cp_multiple_files-wildcard_expansion-.png
[7]: https://itsfoss.com/content/images/2023/07/cp_overwrite--i-.png
[8]: https://itsfoss.com/content/images/2023/07/cp_overwrite--i-_unchanged.png
[9]: https://itsfoss.com/content/images/2023/07/cp_overwrite_-n.png
[10]: https://itsfoss.com/content/images/2023/07/cp_overwrite_-b-1.png
[11]: https://itsfoss.com/content/images/2023/07/cp_overwrite--u--1.png
[12]: https://linuxhandbook.com:443/copy-directory-linux/
[13]: https://itsfoss.com/content/images/2023/07/cp_directories_1-1.png
[14]: https://itsfoss.com/content/images/2023/07/cp_directories_2-1.png
[15]: https://linuxhandbook.com:443/file-timestamps/
[16]: https://linuxhandbook.com:443/linux-file-permissions/
[17]: https://itsfoss.com/content/images/2023/07/cp_preserve_attributes.png

View File

@ -0,0 +1,185 @@
[#]: subject: "Using cp Command in Linux"
[#]: via: "https://itsfoss.com/cp-command/"
[#]: author: "Abhishek Prakash https://itsfoss.com/author/abhishek/"
[#]: collector: "lkxed"
[#]: translator: "onionstalgia"
[#]: reviewer: " "
[#]: publisher: " "
[#]: url: " "
在 Linux 中使用 cp 命令
======
cp 命令是 Linux 中一个重要的命令,您可能经常会用到它。
正如名称所示cp 代表复制,它被用于[在 Linux 命令行中复制文件和目录][1]。
这是一个相对简单的命令,只有几个选项,但您仍有必要深入了解它。
在展示 cp 命令的实际示例之前,我更建议您先熟悉绝对路径和相对路径的概念,将文件从一个位置复制到另一个位置时,您需要用到它们。
### 复制单个文件
cp 命令最简单和最常见的用途是复制文件,只需指定源文件和要“粘贴”文件的目标目录即可。
```
cp 源文件 目标目录
```
![将单个文件从源目录复制到目标目录。][2]
### 在复制文件的同时重命名它
您将文件复制到另一个位置时可以同时进行[重命名][3]。这有点类似于文本编辑器中的“另存为”选项。
为此,您必须在路径中给出新的文件名。
```
cp 源文件 目标目录/新文件名
```
![在复制文件的同时重命名][4]
### 复制多个文件
您还可以将多个文件复制到另一个位置。
```
cp 文件1 文件2 文件3 目标目录
```
![复制多个文件时,将目标目录放在最后][5]
在这种情况下,您无法重命名文件。
您还可以使用通配符扩展,将特定后缀的文件复制到另一个位置:
```
cp *.txt 目标目录
```
![使用通配符扩展复制多个文件,比如所有 .txt 后缀的文件:][6]
### 复制文件时避免覆盖现有文件。
如果您将 file1.txt 复制到一个已经存在名为 file1.txt 文件的目录中,它会将原有的文件覆盖掉。
如果您不希望这样cp 命令还提供了几个选项来处理文件覆盖的情况。
首先是使用选项 `-i` 的交互模式。在交互模式下,它会询问是否确认或放弃覆盖目标文件。
```
cp -i 源文件 目标目录
cp覆盖 '目标目录/源文件'
```
按 Y 覆盖文件,按 N 跳过复制该文件。
![覆盖,但以交互方式询问(内容将被覆盖)][7]
![覆盖,但以交互方式询问(内容不会被覆盖)][8]
选项 `-n` 代表完全取消覆盖。使用此选项时目标文件不会被覆盖。
```
cp -n 源文件 目标目录
```
![取消覆盖(目录内文件的内容未更改)][9]
还有一个选项 `-b`,在目标目录的文件将被覆盖时自动为其创建备份。我猜这里 b 代表备份。
```
cp -b 源文件 目标目录
```
![覆盖文件,但在备份文件后附加了“~”。][10]
最后,还有一个“更新”选项 `-u`,如果目标文件比源文件旧,或者目标文件不存在,就会被覆盖掉。
```
cp -u 源文件 目标目录
```
![新文件会覆盖旧文件][11]
### 复制目录(文件夹)
cp 命令也用来[在 Linux 命令行中复制目录][12]。
在复制目录时,您需要使用递归选项 `-r`
```
cp -r 源目录 目标目录
```
![在 Linux 中使用 cp 命令复制整个目录][13]
您还可以将多个目录复制到另一个位置:
```
cp -r 目录1 目录2 目录3 目标目录
```
![使用 cp 命令复制多个目录][14]
### 在复制时保留属性
当您将文件复制到另一个位置时,它的[时间戳][15]、[文件权限][16]甚至所有权都会发生变化。
这是正常的行为。但在某些情况下,您可能希望在复制文件时保留其原始属性。
要保留属性,请使用选项 `-p`
```
cp -p 源文件 目标目录
```
![][17]
> 💡 还有一个 `-a` 选项用于存档模式。它将连 ACL 也保留下来。
### 🏋️ 练习时间
想要练习一下 cp 命令吗?以下是一些简单的练习题供您尝试。
- 打开终端并创建一个名为 `practice_cp` 的目录。
- 现在,将 /etc/services 文件复制到这个新创建的目录中。
- 在 practice 目录中对复制的 services 文件进行一些小的更改。
- 现在,使用更新模式再次复制 /etc/services 文件。有什么变化吗?观察一下。
- 查看 /var/log 目录,并将以 mail 开头的日志文件复制到您的联系目录下。
- 现在,返回到您的家目录,并创建一个名为 new_dir 的新目录(好吧,我想不出更好的名字)。
- 将 practice_cp 目录复制到 new_dir 目录中。
对您来说这些练习足够用了。希望您能享受在 It's FOSS 上学习 Linux 命令。
--------------------------------------------------------------------------------
via: https://itsfoss.com/cp-command/
作者:[Abhishek Prakash][a]
选题:[lkxed][b]
译者:[onionstalgia](https://github.com/onionstalgia)
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://itsfoss.com/author/abhishek/
[b]: https://github.com/lkxed/
[1]: https://itsfoss.com/copy-files-directory-linux/
[2]: https://itsfoss.com/content/images/2023/07/cp_2.png
[3]: https://learnubuntu.com:443/rename-files/
[4]: https://itsfoss.com/content/images/2023/07/cp_rename.png
[5]: https://itsfoss.com/content/images/2023/07/cp_multiple_files-1.png
[6]: https://itsfoss.com/content/images/2023/07/cp_multiple_files-wildcard_expansion-.png
[7]: https://itsfoss.com/content/images/2023/07/cp_overwrite--i-.png
[8]: https://itsfoss.com/content/images/2023/07/cp_overwrite--i-_unchanged.png
[9]: https://itsfoss.com/content/images/2023/07/cp_overwrite_-n.png
[10]: https://itsfoss.com/content/images/2023/07/cp_overwrite_-b-1.png
[11]: https://itsfoss.com/content/images/2023/07/cp_overwrite--u--1.png
[12]: https://linuxhandbook.com:443/copy-directory-linux/
[13]: https://itsfoss.com/content/images/2023/07/cp_directories_1-1.png
[14]: https://itsfoss.com/content/images/2023/07/cp_directories_2-1.png
[15]: https://linuxhandbook.com:443/file-timestamps/
[16]: https://linuxhandbook.com:443/linux-file-permissions/
[17]: https://itsfoss.com/content/images/2023/07/cp_preserve_attributes.png