Grok Mogger wrote:
I have about 36 GB of files on a hard disk that I've transfered to
another disk. I'd like to cksum or md5sum the files just to make sure
that they were all copied well. I can't seem to find a way to recurse
through the directories and do this to a lot of files. I've looked
around a lot, and finding nothing I'm about to start writing my own
script, but I thought I'd ask here first. It just seems like something
that there would be a way to do already, and I'm just missing it.
You can create a file list of checksums, and then check them all
cd /path/to/source
find . -... | xargs md5sum >> /temp/path/sum.md5
cd /path/to/dest
md5sum --check /temp/path/sum.md5
Mike
--
p="p=%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,34);}
This message made from 100% recycled bits.
You have found the bank of Larn.
I can explain it for you, but I can't understand it for you.
I speak only for myself, and I am unanimous in that!
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]