📅  最后修改于: 2020-12-07 07:46:53             🧑  作者: Mango
“ cp”表示复制。 'cp'命令用于复制文件或目录。
要将文件复制到相同的目录语法中,
cp
在上面的快照,我们已经创建的“实况”的副本并将其命名为“newdocu”。如果万一,
我们必须提到目标目录的路径。
在下面的快照中,更早的时候没有“文本”文件。发出命令后, “文本”文件已复制到目标目录“桌面” 。
Option | Function |
---|---|
cp -r | To copy a directory along with its sub dirctories. |
cp file1 file 2 directory name | To copy multiple file or directories in a directory. |
To backup the existing file before over writing it. | |
cp -i | Asks for confirmtion. |
cp -l | To create hard link file. |
cp -p | Preserves attribute of a file. |
cp -u -v | To make sure source file is newer then destination file. |