3 lines
185 B
Bash
Executable File
3 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
find $1 -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
|