/ Published in: Bash
Expand |
Embed | Plain Text
find "$@" -type f -print0 | xargs -0 -n1 md5sum | sort --key=1,32 | uniq -w 32 -d --all-repeated=separate
You need to login to post a comment.
benpjohnson on 09/30/09
1 person have marked this snippet as a favorite
find "$@" -type f -print0 | xargs -0 -n1 md5sum | sort --key=1,32 | uniq -w 32 -d --all-repeated=separate
You need to login to post a comment.