I am writing a bash script, and I would like to know which files are the same in two directory trees.
It would be the opposite of using diff.
Well i found the answer myself. I had tried it before, but I thought it did not work.
diff -srq dir1/ dir2/ | grep identical
Well i found the answer myself. I had tried it before, but I thought it did not work.
What -srq means? From diff –help :