linux命令之cp
1.cp介绍
linux命令cp是用来复制文件或目录
2.cp用法
cp [参数] scr dest
cp常用参数
参数 说明
-a 保留文件的属性,进行递归复制,相当于-pdr
-f 强制复制,不提示
3.实例
3.1.复制1.txt文件至ztj目录
命令:
cp -a 1.txt ztj/
[root@centos79-3 ~]# ls 1.txt
1.txt
[root@centos79-3 ~]# ls -l 1.txt
-rw-r--r-- 1 root root 4 Sep 16 11:24 1.txt
[root@centos79-3 ~]# cp -a 1.txt ztj/
[root@centos79-3 ~]# cd ztj/
[root@centos79-3 ztj]# ls -l 1.txt
-rw-r--r-- 1 root root 4 Sep 16 11:24 1.txt
[root@centos79-3 ztj]#
3.2.强制复制文件到目录
命令:
cp -f 1.txt ztj/
[root@centos79-3 ~]# echo 2222 >>1.txt
[root@centos79-3 ~]# cat 1.txt
qqq
2222
[root@centos79-3 ~]# ls -l 1.txt
-rw-r--r-- 1 root root 9 Sep 16 11:39 1.txt
[root@centos79-3 ~]# cp -f 1.txt ztj/
cp: overwrite ‘ztj/1.txt’? y
[root@centos79-3 ~]# cd ztj/
[root@centos79-3 ztj]# ls -l 1.txt
-rw-r--r-- 1 root root 9 Sep 16 11:39 1.txt
————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/132916594