Page tree

Versions Compared

Key

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

Introduction

.... why would you use it?

Usage

Verify directory copy,

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

 

References

md5 entire folder - http://www.cnet.com/news/how-to-manually-verify-copied-files-in-os-x/