Run the following in both directories (change the output filename for the second):
find . -print0 | LC_ALL=C sort -z | xargs -0r md5sum > ../dir1.md5 2>&1
Compare the two resulting text files with eg.
diff
.
If you're interested only in files (and don't care for potential empty directories), then add
-type f
to the arguments of
find
.
Recent comments
2 years 31 weeks ago
4 years 1 week ago
4 years 1 week ago
4 years 3 weeks ago
4 years 4 weeks ago
4 years 11 weeks ago
4 years 11 weeks ago
4 years 11 weeks ago
4 years 11 weeks ago
4 years 11 weeks ago