系统相关
首页 > 系统相关> > Linux常用技巧系列: cp拷贝文件及目录

Linux常用技巧系列: cp拷贝文件及目录

作者:互联网

(阅读时间10s)

拷贝文件

cp file_name bak_file_name

例如:

[root@localhost blogs]# cp tmpfile tmpfile.bak
[root@localhost blogs]# ls
file  tmpfile  tmpfile.bak

拷贝目录

我们先用mkdir创建目录,在用cp -r 拷贝整个目录

[root@localhost blogs]#mkdir tmpdir 

[root@localhost blogs]# cp -r tmpdir tmpdir_bak

[root@localhost blogs]# ls

file  tmpdir  tmpdir_bak  tmpfile

 

标签:tmpfile,blogs,tmpdir,Linux,拷贝,cp,root,localhost
来源: https://blog.csdn.net/dongfangxiaozi_/article/details/89073394