cp命令
Posted sambo510
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cp命令相关的知识,希望对你有一定的参考价值。
cp命令
=============================
cp命令用来将一个或多个源文件或者目录复制到指定的目的文件或目录。
用法:
cp [OPTION]... [-T] SOURCE DEST
常用参数:
-i prompt before overwrite(覆盖前提示) -i是安全选项,如遇到一个已知的文件,就会询问是否覆盖。
我们常使用的cp命令就是cp -i .如不想询问是否覆盖,可以使用/usr/bin/cp或者cp .
[[email protected] ~]# which cp
alias cp=‘cp -i‘
/usr/bin/cp
-r copy directories recursively(递归复制目录). cp如果要复制目录,就要使用-r参数
-v explain what is being done(解释正在做什么) 详细显示命令执行的操作
示例:
[[email protected] ~]# touch 1.txt
[[email protected] ~]# mkdir dir1
[[email protected] ~]# cp -v 1.txt /tmp/
‘1.txt‘ -> ‘/tmp/1.txt‘
[[email protected] ~]# cp -v 1.txt /tmp/
cp: overwrite ‘/tmp/1.txt‘? y
‘1.txt‘ -> ‘/tmp/1.txt‘
[[email protected] ~]# /usr/bin/cp -v 1.txt /tmp/
‘1.txt‘ -> ‘/tmp/1.txt‘
[[email protected] ~]# cp -v 1.txt /tmp/
‘1.txt‘ -> ‘/tmp/1.txt‘
[[email protected] ~]# cp -v dir1 /tmp/
cp: omitting directory ‘dir1‘
[[email protected] ~]# cp -rv dir1 /tmp/
‘dir1‘ -> ‘/tmp/dir1‘
以上是关于cp命令的主要内容,如果未能解决你的问题,请参考以下文章