用于复制文件的 shell 脚本
如果存在目录,
则为/backup/ 而里面的文件是 a.gz b.gz c.gz
以及另一个目录 /backup-directorybackup 其中的文件是 a.gz
我需要一个 shell 脚本来比较两个目录,如果文件存在,则忽略它,如果文件不存在,请将其复制到目标目录
谢谢..
If there exist a directory,
/backup/
And the files in it are a.gz b.gz c.gz
And another directory /backup-directorybackup
And the files in it are a.gz
I need a shells script to compare two directories if the files are present then ignore it and if the filesare not present copy it to the destination directory
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“rsync”命令拥有一切
"rsync" command has it all
rsync -a /backup/ /backup-directorybackup/
rsync -a /backup/ /backup-directorybackup/