> However, I don't know how to use the output of "find cd-root -type f
> -or -type l | xargs sha1sum -b" to find duplicate files. Maybe someone
> can donate a perl/python script to find duplicate files and list them?
find . -type f -print0 | xargs -0 -L 1 md5sum | sort | uniq -w 20 -D

- Sascha



Reply via email to