2019-08-24 14:35:45 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# Description: List non-empty duplicate files in the current directory (based on size followed by MD5)
|
|
|
|
#
|
|
|
|
# Source: https://www.commandlinefu.com/commands/view/3555/find-duplicate-files-based-on-size-first-then-md5-hash
|
|
|
|
#
|
2020-05-06 05:29:57 +00:00
|
|
|
# Dependencies: find md5sum sort uniq xargs
|
2019-08-24 14:35:45 +00:00
|
|
|
#
|
|
|
|
# Shell: POSIX compliant
|
2020-05-06 05:12:29 +00:00
|
|
|
# Authors: syssyphus, KlzXS
|
2019-08-24 14:35:45 +00:00
|
|
|
|
2020-04-26 16:55:03 +00:00
|
|
|
find . -size +0 -type f -printf "%s %p\n" | sort -rn | sed -n 'N; /^\([0-9]*\) .*\n\1.*$/p;$d;D' | awk '{printf("%s\0", substr($0, index($0, $2)))}' | xargs -0 md5sum | sort | uniq -w32 --all-repeated=separate
|
2019-08-24 14:35:45 +00:00
|
|
|
|
2019-11-21 20:44:25 +00:00
|
|
|
printf "Press any key to exit"
|
|
|
|
read -r _
|