I have two directories with the same list of files. I need to compare all the files present in both the directories using the diff command. Is there a simple co
diff
Try this:
diff -rq /path/to/folder1 /path/to/folder2