Skip to content

Instantly share code, notes, and snippets.

@jglenn9k
Last active January 30, 2017 17:55
Show Gist options
  • Save jglenn9k/6783436 to your computer and use it in GitHub Desktop.
Save jglenn9k/6783436 to your computer and use it in GitHub Desktop.
OUTF=rem-duplicates.sh; echo "#!/bin/bash" > $OUTF; find "$@" -type f -printf "%s\n" | sort -n | uniq -d | xargs -I@@ -n1 find "$@" -type f -size @@c -exec md5sum {} \; | sort --key=1,32 | uniq -w 32 -d --all-repeated=separate | sed -r 's/^[0-9a-f]*( )*//;s/([^a-zA-Z0-9./_-])/\\\1/g;s/(.+)/#rm \1/' >> $OUTF; chmod a+x $OUTF; ls -l $OUTF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment