Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Ubuntu 中,我可以使用此命令在两个文件夹之间查找不同的文件:
diff -qr folder1 folder2
是否可以添加一个过滤器以仅检查文件:.cpp 和 .h?
不确定您是否可以指定要包含的模式(diff手册页对此没有任何说明),但您可以使用-x PATor--exclude=PAT选项排除特定模式。您还可以使用该-X FILE选项来提供包含要排除的模式的文件。
diff
-x PAT
--exclude=PAT
-X FILE