LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   General (https://www.linuxquestions.org/questions/general-10/)
-   -   How do I compare md5sums of directories (and of course everything in it)? (https://www.linuxquestions.org/questions/general-10/how-do-i-compare-md5sums-of-directories-and-of-course-everything-in-it-124001/)

natalinasmpf 12-08-2003 06:37 PM

How do I compare md5sums of directories (and of course everything in it)?
 
Yes, how do I generate an md5sum signature of a directory and everything in it using the md5sum command?

Tarts 12-08-2003 07:03 PM

Re: How do I compare md5sums of directories (and of course everything in it)?
 
Quote:

Originally posted by natalinasmpf
Yes, how do I generate an md5sum signature of a directory and everything in it using the md5sum command?
The command below will give you a md5sum hash for everything in the '/etc' directory.
Code:

find /etc -exec md5sum {} \;
Tarts


All times are GMT -5. The time now is 05:25 AM.