The difference between the contents of two directories

I found the difference in all cpp script files, headers and skins between the two directories, which may also have subdirectories.

+5
source share
1 answer

You can use the recursive variant of diff

diff -r old_dir new_dir
+13
source

All Articles