Recursively compare directories with summary on different contents without examining file contents’ differences

diff()recursive

I want to compare the contents of two directories, recursively, showing which files are missing from one or the other, and which files have different content. But I don't want output on the differences within the files, just whether they are different or not. There won't be any links to worry about.

I hope this isn't a duplicate, I've trawled through examples and can't find an answer to this. Thanks

Best Answer

Usually this looks already good:

diff -rq dirA dirB
Related Question