cp重点在于复制,主要将一个或多个源文件或者文件夹复制到指定的目的文件或文件夹(可以理解为在window系统上操作,根据自己所需复制粘贴到指定位置)
cp = copy
cp [选项]… [-T] 源文件 目标文件
cp [选项]… 源文件… 目录
cp [选项]… -t 目录 源文件…
将一个文件夹及文件夹下所有内容拷贝到另外一个文件夹
cp -r /folder1 /folder2
[root@iZbp1d8rn0652ia3bzzmioZ local]# cd test1/ [root@iZbp1d8rn0652ia3bzzmioZ test1]# ls -l 总用量 0 -rw-r--r-- 1 root root 0 11月 23 23:00 111111.txt -rw-r--r-- 1 root root 0 11月 23 23:00 1111.txt -rw-r--r-- 1 root root 0 11月 23 22:59 111.txt [root@iZ test1]# cd ../test2/ [root@iZ test2]# ls [root@iZ test2]# cp -r /usr/local/test1/ /usr/local/test2/ [root@iZ test2]# ls test1 [root@iZ test2]# cd test1/ [root@iZ test1]# ls 111111.txt 1111.txt 111.txt [root@iZ test1]#
将一个文件夹下所有内容拷贝到另外一个文件夹下
cp -r /folder1/* /folder2
drwxr-xr-x 2 root root 55 11月 23 23:00 test1 drwxr-xr-x 2 root root 6 11月 23 23:07 test2 [root@iZ local]# cd test1/ [root@iZ test1]# ls 111111.txt 1111.txt 111.txt [root@iZ test1]# cd ../test2/ [root@iZ test2]# ls [root@iZ test2]# cp /usr/local/test1/* /usr/local/test2 [root@iZ test2]# ls 111111.txt 1111.txt 111.txt [root@iZ test2]#
目标文件下已经存在复制文件时,在覆盖时会先询问是否执行操作
cp -i /folder1/xxx.txt /folder2
[root@iZ test2]# ls 111111.txt 1111.txt 111.txt [root@iZ test2]# cd ../test1/ [root@iZ test1]# ls 111111.txt 1111.txt 111.txt [root@iZ test1]# cp -i 111.txt /usr/local/test2 cp:是否覆盖'/usr/local/test2/111.txt'? y [root@iZ test1]#
复制的文件与原文件时间一样
cp -a 1111.txt /usr/local/test2/
[root@iZ test1]# ls -l 总用量 0 -rw-r--r-- 1 root root 0 11月 23 23:00 111111.txt -rw-r--r-- 1 root root 0 11月 23 23:00 1111.txt -rw-r--r-- 1 root root 0 11月 23 22:59 111.txt [root@iZ test1]# cp 111.txt /usr/local/test2/ [root@iZ test1]# cd /usr/local/test2/ [root@iZ test2]# ls -l 总用量 0 -rw-r--r-- 1 root root 0 11月 23 23:28 111.txt
[root@iZ test1]# ls -l 总用量 0 -rw-r--r-- 1 root root 0 11月 23 23:00 111111.txt -rw-r--r-- 1 root root 0 11月 23 23:00 1111.txt -rw-r--r-- 1 root root 0 11月 23 22:59 111.txt [root@iZ test1]# cp -a 1111.txt /usr/local/test2/ [root@iZ test1]# cd /usr/local/test2/ [root@iZ test2]# ls -l 总用量 0 -rw-r--r-- 1 root root 0 11月 23 23:00 1111.txt -rw-r--r-- 1 root root 0 11月 23 23:28 111.txt