linux命令——cp
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux命令——cp相关的知识,希望对你有一定的参考价值。
cp命令主要是使用来复制文件和目录的,
基本使用语法:
cp 源文件 目标目录
[email protected]:~/eth10/eth10# ls test test.txt [email protected]:~/eth10/eth10# ls test [email protected]:~/eth10/eth10# cp test.txt test/ [email protected]:~/eth10/eth10# ls test/ test.txt [email protected]:~/eth10/eth10#
cp在复制目录时会自动跳过目录,因此需要使用-r参数来进行复制
[email protected]:~/eth10/eth10# ls test1 [email protected]:~/eth10/eth10# cp test/ test1/ cp: 略过目录‘test/‘ [email protected]:~/eth10/eth10# cp -r test/ test1/ [email protected]:~/eth10/eth10# ls test1 test
另外cp在复制文件时会自动覆盖同名文件,因此我们可以使用-i参数来进行提示是覆盖还是跳过,y覆盖,n跳过!
[email protected]:~/eth10/eth10# ls test test1 test.txt [email protected]:~/eth10/eth10# cp test.txt test [email protected]:~/eth10/eth10# ls test test test.txt [email protected]:~/eth10/eth10# cp -i test.txt test/ cp:是否覆盖‘test/test.txt‘? n [email protected]:~/eth10/eth10#
最后我们可以使用-b参数,主要是对同名文件重命名(文件名后添加~)后再进行复制
[email protected]:~/eth10/eth10# cp -b test.txt test/ [email protected]:~/eth10/eth10# ls test/ test test.txt test.txt~ [email protected]:~/eth10/eth10#
本文出自 “eth10” 博客,请务必保留此出处http://eth10.blog.51cto.com/13143704/1957498
以上是关于linux命令——cp的主要内容,如果未能解决你的问题,请参考以下文章