如何进行目录之间的精准比较?
diff -r 还不够。
我需要模式、符号链接等的比较
diff -r is not enough.
I need comprison of modes, symlinks and like
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
diff -r 还不够。
我需要模式、符号链接等的比较
diff -r is not enough.
I need comprison of modes, symlinks and like
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如何在两个目录上比较 ls -lR 的输出?
How about diffing the output of
ls -lR
on the two directories?我想说没有工具默认提供此类信息。但是,正如 serverdefault.com 中的这个问题中所解释的,您可以使用命令(或脚本)将以下信息打印到标准输出:您需要比较并使用
diff
来比较要比较的目录的输出。I'd say there's no tool that provide that kind of information by default. However, as explained in this question in serverdefault.com, you can use a command (or script) that prints to stdout the information that you need to compare and use
diff
to compare the output for the directories you want to compare.