码迷,mamicode.com
首页 > 其他好文 > 详细

rsync源目录写法的一点小细节

时间:2018-02-07 22:42:10      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:tree   cto   oca   --   progress   localhost   ogr   目录   host   

原始状态:

[root@localhost tmp]# tree

.

├── a

│   ├── a1

│   └── a2

└── b

 

2 directories, 2 files

 

[root@localhost tmp]# rsync -av --progress a b

sending incremental file list

a/

a/a1

           0 100%    0.00kB/s    0:00:00 (xfer#1, to-check=1/3)

a/a2

           0 100%    0.00kB/s    0:00:00 (xfer#2, to-check=0/3)

 

sent 143 bytes  received 54 bytes  394.00 bytes/sec

 

[root@localhost tmp]# tree

.

├── a

│   ├── a1

│   └── a2

└── b

    └── a

        ├── a1

        └── a2

 

 

 

回到原始状态:

注意,源目录多了一个斜杆:

[root@localhost tmp]# rsync -av --progress a/ b

sending incremental file list

./

a1

           0 100%    0.00kB/s    0:00:00 (xfer#1, to-check=1/3)

a2

           0 100%    0.00kB/s    0:00:00 (xfer#2, to-check=0/3)

 

sent 133 bytes  received 53 bytes  372.00 bytes/sec

total size is 0  speedup is 0.00

[root@localhost tmp]# tree

.

├── a

│   ├── a1

│   └── a2

└── b

    ├── a1

    └── a2

 

2 directories, 4 files

 

 

变成了a下面的内容复制到文件b下,而不是像第一次的包括a整个目录

目标如果是文件夹的话,最后有没有加斜杆都不影响。

加-n参数可以进行dry-run模式,即只显示有可能的改变,但实际并不执行。

 

rsync源目录写法的一点小细节

标签:tree   cto   oca   --   progress   localhost   ogr   目录   host   

原文地址:https://www.cnblogs.com/zejin2008/p/8428372.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!