Linux中拷贝 cp命令中拷贝所有的写法详解

今天在编写一个脚本的时候,发现一个比较奇怪的问题:就是在使用cp拷贝当前目录下所有文件到目标目录的时候,源和目标目录大小不同。原来一直没有留意有这样的问题,后来查了些资料,才知道以前一直使用的格式有误,

一、预备

cp就是拷贝,最简单的使用方式就是:

?

cp oldfile newfile

但这样只能拷贝文件,不能拷贝目录,所以通常用:

?

cp -r old/ new/

那就会把old目录整个拷贝到new目录下。注意,不是把old目录里面的文件拷贝到new目录,而是把old直接拷贝到new下面,结果是:

?

[root@dc5 test]# ll new/

total 4

drwxr-xr-x 2 root root 4096 Dec 15 11:55 old

那如果要保持源文件的所有权限,可以这样:

?

cp -rp old/ new/

-p参数,可以保持权限、宿主、时间栈,还可能包括link等;还有更简单的,就是用:

?

cp -a old/new/

-a参数,就等于-dpR。

二、问题1

好,我们来看看这次的问题。环境是:

◎两个目录:old、new,其中old里面有个三个内容:test1文件、test2目录,还有就是.test3,这是一个隐含文件。

?

[root@dc5 test]# ll -laR

.:

total 20

drwxr-xr-x 4 root root 4096 Dec 15 11:55 .

drwxrwxrwt 7 root root 4096 Dec 15 11:59 ..

drwxr-xr-x 2 root root 4096 Dec 15 12:14 new

drwxr-xr-x 3 root root 4096 Dec 15 12:14 old

 

./new:

total 8

drwxr-xr-x 2 root root 4096 Dec 15 12:14 .

drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..

 

./old:

total 12

drwxr-xr-x 3 root root 4096 Dec 15 12:14 .

drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..

-rw-r--r-- 1 root root  0 Dec 15 12:07 .test3

-rw-r--r-- 1 root root  0 Dec 15 12:05 test1

drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2

 

./old/test2:

total 8

drwxr-xr-x 2 root root 4096 Dec 15 12:14 .

drwxr-xr-x 3 root root 4096 Dec 15 12:14 ..

◎操作一:

?

[root@dc5 test]# cp -a old/* new/

[root@dc5 test]# ll -laR new/

new/:

total 12

drwxr-xr-x 3 root root 4096 Dec 15 12:15 .

drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..

-rw-r--r-- 1 root root  0 Dec 15 12:05 test1

drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2

 

new/test2:

total 8

drwxr-xr-x 2 root root 4096 Dec 15 12:14 .

drwxr-xr-x 3 root root 4096 Dec 15 12:15 ..

问题出来了:隐含的.test3文件没有一齐拷贝到new目录下。

原因是:参数使用不正确。这样的写法,通常都是因为熟悉了过去Dos的格式(包括我自己),而实际在bash环境下,cp使用是不能匹配类似.开头的隐含文件的。

◎操作二

正确的写法应该这样:

?

[root@dc5 test]# cp -a old/. new/

[root@dc5 test]# ll -laR new/

new/:

total 12

drwxr-xr-x 3 root root 4096 Dec 15 12:14 .

drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..

-rw-r--r-- 1 root root  0 Dec 15 12:07 .test3

-rw-r--r-- 1 root root  0 Dec 15 12:05 test1

drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2

 

new/test2:

total 8

drwxr-xr-x 2 root root 4096 Dec 15 12:14 .

drwxr-xr-x 3 root root 4096 Dec 15 12:14 ..

不用*号,而用.号代替。

还有一种比较复杂一些的写法:

?

[root@dc5 test]# cp -a old/* old/.[^.]* new/

[root@dc5 test]# ll -laR new/

new/:

total 12

drwxr-xr-x 3 root root 4096 Dec 15 12:25 .

drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..

-rw-r--r-- 1 root root  0 Dec 15 12:07 .test3

-rw-r--r-- 1 root root  0 Dec 15 12:05 test1

drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2

 

new/test2:

total 8

drwxr-xr-x 2 root root 4096 Dec 15 12:14 .

drwxr-xr-x 3 root root 4096 Dec 15 12:25 ..

请注意写法,不要写成.*了。(原因请看下面)

三、问题2

上面提到不要写成.,那.代表什么?

?

[root@dc5 test]# echo .*

. ..

.*代表的是当前目录,以及上一层目录。

所以,使用.*会导致更大的问题:

?

[root@dc5 test]# cp -a old/.* new/

cp: cannot copy a directory, `old/..', into itself, `new/'

cp: cannot copy a directory, `old/..', into itself, `new/'

cp: will not create hard link `new/old' to directory `new/.'

cp: overwrite `new/.test3'? y

[root@dc5 test]# ll -laR new/

new/:

total 16

drwxr-xr-x 4 root root 4096 Dec 15 11:55 .

drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..

-rw-r--r-- 1 root root  0 Dec 15 12:07 .test3

drwxr-xr-x 2 root root 4096 Dec 15 12:14 new

-rw-r--r-- 1 root root  0 Dec 15 12:05 test1

drwxr-xr-x 2 root root 4096 Dec 15 12:14 test2

 

new/new:

total 8

drwxr-xr-x 2 root root 4096 Dec 15 12:14 .

drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..

-rw-r--r-- 1 root root  0 Dec 15 12:07 .test3

-rw-r--r-- 1 root root  0 Dec 15 12:05 test1

 

new/test2:

total 8

drwxr-xr-x 2 root root 4096 Dec 15 12:14 .

drwxr-xr-x 4 root root 4096 Dec 15 11:55 ..

也就是说,使用.*就等于这样了:

?

[root@dc5 test]# cp -a old/. old/.. old/.test3 new/

[root@dc5 test]# echo old/.*

old/. old/.. old/.test3

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

原文链接:http://blog.csdn.net/itjavawfc/article/details/53934332

原创文章,作者:KFPCL,如若转载,请注明出处:http://www.wangzhanshi.com/n/7398.html

(0)
KFPCL的头像KFPCL
上一篇 2025年1月1日 16:29:34
下一篇 2025年1月1日 16:29:38

相关推荐

  • telnet Connection refused端口不通如何处理

    一、telnet简述 telnet一般用于测试本机到目的主机的目的端口网络通不通,telnet命令后面跟目的主机的IP或者域名, 格式如下: telnet ${域名}|${IP} …

    Linux 2024年12月17日
  • Linux下connect超时处理(总结)

    1、前言 最近在写一个测试工具,要求快速的高效率的扫描出各个服务器开放了哪些端口。当时想了一下,ping只能检测ip,判断服务器的网络是连通的,而不能判断是否开放了端口。我们知道端…

    2025年1月1日
  • Linux管理和清理日志文件的有效方法

    如何在 Linux 中管理和清理日志文件 在现代系统管理中,日志文件的管理是一个重要而复杂的任务。日志文件不仅记录了系统运行状态,还可以帮助我们排查问题、分析性能、进行审计等。然而…

    Linux 2024年12月17日
  • Linux shell tr 命令详解

    Linux shell tr 命令详解 1. 用途 tr,translate的简写,主要用于压缩重复字符,删除文件中的控制字符以及进行字符转换操作。 2. 语法 ? tr [OPT…

    Linux 2025年1月1日
  • linux服务器安装PHP扩展zip,zlib方法

    首先Linux服务器已安装好PHP PHP各个版本下载地址:http://php.net/releases/ 以我使用的5.4.45为例,我将下载的压缩包放到/root/Downl…

    Linux 2025年1月1日
  • Linux系统中检查系统重启记录方案

    借其强大的架构和无与伦比的灵活性,Linux 提供了专门为深入系统诊断而设计的工具和命令。 系统管理员的一个典型职责是熟练地检查 Linux 中的系统重新启动历史记录。 计划的和不…

    2024年12月17日
  • Linux软连接实现方式

    Linux软连接 含义 类似与Windows的快捷方式,像点击桌面exe文件图标运行某个程序,不用找到此文件夹与exe文件 也就是将文件文件夹链接到其他位置 语法 ln -s 参数…

    2024年12月17日
  • linux下判断文件和目录是否存在的方法(总结)

    1、前言 工作中涉及到文件系统,有时候需要判断文件和目录是否存在。我结合apue第四章文件和目录,总结一下如何正确判断文件和目录是否存在,方便以后查询。 2、stat系列函数 st…

    2025年1月1日
  • linux 查看文件的属性(ls,lsattr,file,stat)实例详解

    查看文件属性有多种方法,且这些方法中偏向不同,具体如下: 1,ls     ls -a 查看所有文件     ls -l 查看详细的属性  2,lsattr     查看文件的扩展…

    2025年1月1日
  • Linux的wget命令详解

    Linux wget是一个下载文件的工具,它用在命令行下。对于Linux用户是必不可少的工具,尤其对于网络管理员,经常要下载一些软件或从远程服务器恢复备份到本地服务器。如果我们使用…

    Linux 2025年1月1日

发表回复

登录后才能评论