I need to calculate a summary md5 checksum for all files of a particular type ( *.py for example ) placed under a directory and all subdirectories. What is the best way to do that? Thanks.

The proposed solutions are very nice, but this is not exactly what I need. I'm looking for a solution to get a single SUMMARY checksum which will uniquely identify the directory as a whole - including content of all its subdirs. Thanks a lot.

link|improve this question

56% accept rate
Seems like a superuser question to me. – Noldorin Nov 1 '09 at 14:52
2  
Note that checksums don't uniquely identify anything. – Hosam Aly Nov 1 '09 at 15:58
Why would you have two directory trees that may or may not be "the same" that you want to uniquely identify? Does file create/modify/access time matter? Is version control what you really need? – jmucchiello Nov 1 '09 at 22:36
What is really matter in my case is similarity of the whole directory tree content which means AFAIK the following: 1) content of any file under the directory tree has not been changed 2) no new file was added to the directory tree 3) no file was deleted – victorz Nov 3 '09 at 11:18
feedback

8 Answers

up vote 10 down vote accepted
find /path/to/dir/ -type f -name *.py -exec md5sum {} + | awk '{print $1}' | sort | md5sum

The find command lists all the files that end in .py. The md5sum is computed for each .py file. awk is used to pick off the md5sums (ignoring the filenames, which may not be unique). The md5sums are sorted. The md5sum of this sorted list is then returned.

I've tested this by copying a test directory:

rsync -a ~/pybin/ ~/pybin2/

I renamed some of the files in ~/pybin2.

The find...md5sum command returns the same output for both directories.

2bcf49a4d19ef9abd284311108d626f1  -
link|improve this answer
This one really works as expected! Thanks a million! – victorz Nov 3 '09 at 11:49
2  
Note that the same checksum will be generated if a file gets renamed. So this doesn't truly fit a "checksum which will uniquely identify the directory as a whole" if you consider file layout part of the signature. – valentin.milea Jan 27 at 13:46
feedback

Create a tar archive file on the fly and pipe that to md5sum:

tar c dir | md5sum

This produces a single md5sum that should be unique to your file and sub-directory setup. No files are created on disk.

link|improve this answer
+1, simple and elegant – Adam Rosenfield Nov 1 '09 at 22:48
except if it differs, you don't know which dir or file is the culprit... – CharlesB Nov 1 '11 at 16:42
feedback

ire_and_curses's suggestion of using tar c <dir> has some issues:

  • tar processes directory entries in the order which they are stored in the filesystem, and there is no way to change this order. This effectively can yield completely different results if you have the "same" directory on different places, and I know no way to fix this (tar cannot "sort" its input files in a particular order).
  • I usually care about whether groupid and ownerid numbers are the same, not necessarily whether the string representation of group/owner are the same. This is in line with what for example rsync -a --delete does: it synchronizes virtually everything (minus xattrs and acls), but it will sync owner and group based on their ID, not on string representation. So if you synced to a different system that doesn't necessarily have the same users/groups, you should add the --numeric-owner flag to tar
  • tar will include the filename of the directory you're checking itself, just something to be aware of.

As long as there is no fix for the first problem (or unless you're sure it does not affect you), I would not use this approach.

The find based solutions proposed above are also no good because they only include files, not directories, which becomes an issue if you the checksumming should keep in mind empty directories.

Finally, most suggested solutions don't sort consistently, because the collation might be different across systems.

This is the solution I came up with:

dir=<mydir>; (find "$dir" -type f -exec md5sum {} +; find "$dir" -type d) | LC_ALL=C sort | md5sum

Notes about this solution:

  • The LC_ALL=C is to ensure reliable sorting order across systems
  • This doesn't differentiate between a directory "named\nwithanewline" and two directories "named" and "withanewline", but the chance of that occuring seems very unlikely. One usually fixes this with a -print0 flag for find but since there's other stuff going on here, I can only see solutions that would make the command more complicated then it's worth.

PS: one of my systems uses a limited busybox find which does not support -exec nor -print0 flags, and also it appends '/' to denote directories, while findutils find doesn't seem to, so for this machine I need to run:

dir=<mydir>; (find "$dir" -type f | while read f; do md5sum "$f"; done; find "$dir" -type d | sed 's#/$##') | LC_ALL=C sort | md5sum

Luckily, I have no files/directories with newlines in their names, so this is not an issue on that system.

link|improve this answer
+1: Very interesting! Are you saying that the order might differ between different filesystem types, or within the same filesystem? – ire_and_curses Nov 1 '11 at 17:10
both. it just depends on the order of the directory entries within each directory. AFAIK directory entries (in the filesystem) are just created in the order in which you "create files in the directory". A simple example: $ mkdir a; touch a/file-1; touch a/file-2 $ mkdir b; touch b/file-2; touch b/file-1 $ (cd a; tar -c . | md5sum) fb29e7af140aeea5a2647974f7cdec77 - $ (cd b; tar -c . | md5sum) a3a39358158a87059b9f111ccffa1023 - – Dieter_be Nov 14 '11 at 13:01
feedback

If you want one md5sum spanning the whole directory, I would do something like

cat *.py | md5sum
link|improve this answer
Great, but doesn't include those of subdirectories content... – victorz Nov 1 '09 at 14:57
1  
For subdirs use something like cat **.py | md5sum – Ramon Nov 1 '09 at 15:05
feedback

Technically you only need to run ls -lR *.py | md5sum. Unless you are worried about someone modifying the files and touching them back to their original dates and never changing the files' sizes, the output from ls should tell you if the file has changed. My unix-foo is weak so you might need some more command line parameters to get the create time and modification time to print. ls will also tell you if permissions on the files have changed (and I'm sure there are switches to turn that off if you don't care about that).

link|improve this answer
feedback

Take a look at this and this for a more detailed explanation.

link|improve this answer
feedback

GNU find

find /path -type f -name "*.py" -exec md5sum "{}" +;
link|improve this answer
Should the last token be \;? – Dan Moulding Nov 1 '09 at 15:03
its valid for GNU find. check the man page for more info. – ghostdog74 Nov 1 '09 at 15:11
feedback

From the second link (above): find directory -name *.py -type f -exec md5sum {};

link|improve this answer
-1 - it should be in a comment – Oren S May 8 at 12:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.