Hi! ======= On Sunday 24 February 2008, you wrote: ======= ... > > On Sun, 24 Feb 2008 11:06:10 +0000, Stroller wrote: > > > Is there any way to check the integrity of copied directories, to > > > be sure that none of the files or sub-directories in them have > > > become damaged during transfer? I'm thinking of something like > > > md5sum for directories.
I use this script to check how DVD-data were written: nice -n 15 find $1/* -type f -print0 | sort -z | xargs -0 cat | md5sum -b Don't ask me how does it work - I forgot :-) But it works. -- gentoo-user@lists.gentoo.org mailing list