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 では、このコマンドを使用して、2 つのフォルダー間で異なるファイルを見つけることができます。
diff -qr folder1 folder2
ファイルのみをチェックするためのフィルターを追加することは可能でしょうか: .cpp と .h?
含めるパターンを指定できるかどうかはわかりませんが( diffman ページにはそれについて何も記載されていません)、-x PATまたは--exclude=PATオプションを使用して特定のパターンを除外できます。-X FILEオプションを使用して、除外するパターンを含むファイルを提供することもできます。
diff
-x PAT
--exclude=PAT
-X FILE