Surely there must be a way to do this easily!

I've tried the linux command-line apps sha1sum & md5sum but they seem only to be able to compute hashes of individual files and output a list of hash values, one for each file.

I need to generate a single hash for the entire contents of a folder (not just the filenames).

I'd like to do something like

sha1sum /folder/of/stuff > singlehashvalue

Edit: to clarify, my files are at multiple levels in a directory tree, they're not all sitting in the same root folder.

link|improve this question

79% accept rate
feedback

8 Answers

up vote 16 down vote accepted

One possible way would be:

sha1sum /path/to/folder/* | sha1sum

If there is a whole directory tree, you're probably better off using find and xargs. One possible command would be

find /path/to/folder -type f -print0 | xargs -0 sha1sum | sha1sum

Edit: Good point, it's probably a good thing to sort the list of files, so:

find path/to/folder -type f -print0 | sort -z | xargs -0 sha1sum | sha1sum

link|improve this answer
If you sort after the first sha1sum, then a LF in a filename should do no harm. – Rafał Dowgird Feb 13 '09 at 12:07
Edited. Sort can work on 0 delimited lists with the -z option. – Aaron Digulla Feb 13 '09 at 13:38
and don't forget to set LC_ALL=POSIX, so the various tools create locale independent output. – David Schmitt Feb 15 '09 at 12:28
1  
I found cat | sha1sum to be considerably faster than sha1sum | sha1sum. YMMV, try each of these on your system: time find path/to/folder -type f -print0 | sort -z | xargs -0 sha1sum | sha1sum; time find path/to/folder -type f -print0 | sort -z | xargs -0 cat | sha1sum – Richard Bronosky Apr 28 '11 at 17:02
feedback
  • Commit the directory to git, use the commit hash. See metastore for a way to also control permissions.

  • Use a file system intrusion detection tool like aide.

  • hash a tar ball of the directory:

    tar cvf - /path/to/folder | sha1sum

  • Code something yourself, like vatine's oneliner:

    find /path/to/folder -type f -print0 | sort -z | xargs -0 sha1sum | sha1sum

link|improve this answer
+1 for the Git solution. :) – Bombe Feb 13 '09 at 10:49
feedback

If you just want to hash the contents of the files, ignoring the filenames then you can use

cat $FILES | md5sum

Make sure you have the files in the same order when computing the hash:

cat $(echo $FILES | sort) | md5sum

But you can't have directories in your list of files.

link|improve this answer
Moving the end of one file into the beginning of the file that follows it alphabetically would not affect the hash but should. A file-delimiter or file lengths would need to be included in the hash. – Jason Stangroome Mar 12 at 3:35
feedback

What's wrong with a tar -c /path/to/folder | sha1sum?

link|improve this answer
1  
If you want to replicate that checksum on a different machine, tar might not be a good choice, as the format seems to have room for ambiguity and exist in many versions, so the tar on another machine might produce different output from the same files. – slowdog Jan 27 '11 at 18:42
feedback

Try to make it in two steps:

  1. create a file with hashes for all files in a folder
  2. hash this file

Like so:

# for FILE in `find /folder/of/stuff -type f | sort`; do sha1sum $FILE >> hashes; done
# sha1sum hashes

Or do it all at once:

# cat `find /folder/of/stuff -type f | sort` | sha1sum
link|improve this answer
for F in 'find ...' ... doesn't work when you have spaces in names (which you always do nowadays). – mivk Apr 10 at 10:38
feedback

You could sha1sum to generate the list of hash values and then sha1sum that list again, it depends on what exactly it is you want to accomplish.

link|improve this answer
feedback

I would pipe the results for individual files through sort (to prevent a mere reordering of files to change the hash) into md5sum or sha1sum, whichever you choose.

link|improve this answer
feedback

There is a python script for that:

http://code.activestate.com/recipes/576973-getting-the-sha-1-or-md5-hash-of-a-directory/

If you change the names of a file without changing their alphabetical order, the hash script will not detect it. But, if you change the order of the files or the contents of any file, running the script will give you a different hash than before.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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