find_duplicate_files_in_linux
This is an old revision of the document!
Find Duplicate Files in Linux
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.1405537472.txt.gz · Last modified: 2014/07/16 15:04 by juckins