Report dulplicate files


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. find "$@" -type f -print0 | xargs -0 -n1 md5sum | sort --key=1,32 | uniq -w 32 -d --all-repeated=separate

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.