My build of nnn with minor changes
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/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
- #
- # Requires: find md5sum sort uniq xargs
- #
- # Shell: POSIX compliant
- # Author: syssyphus
-
- find -size +0 -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
-
- echo "Press any key to exit"
- read dummy
|