Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Usage

Verify directory copy ,by md5 summing each file and then creating a single md5sum from the list.

Code Block
languagebash
find -s "source directory" -type f -exec md5sum {} \; | md5sum > source.md5.txt
find -s "target directory" -type f -exec md5sum {} \; | md5sum > target.md5.txt
diff source.md5.txt target.md5.txt

...