Christopher Juckins

SysAdmin Tips, Tricks and other Software Tools

User Tools

Site Tools


find_duplicate_files_in_linux

This is an old revision of the document!


find -not -empty -type f -printf "%s\n" | sort -rn | uniq -d | xargs -I{} -n1 find -type f -size {}c -print0 | xargs -0 md5sum | sort | uniq -w32 –all-repeated=separate

find_duplicate_files_in_linux.1401923890.txt.gz · Last modified: 2014/06/04 19:18 by juckins