Skip to content

Instantly share code, notes, and snippets.

@albertomm
Created October 21, 2018 12:03
Show Gist options
  • Save albertomm/854f15d7777fbf1aebd7aff82ae35e98 to your computer and use it in GitHub Desktop.
Save albertomm/854f15d7777fbf1aebd7aff82ae35e98 to your computer and use it in GitHub Desktop.
Rename all files below certain folder to its md5sum, preserving extensions.
#!/bin/bash
find $1 -type f -print0 | \
xargs -0 md5sum | \
awk '{r = gensub( "([a-f0-9]+) (.+/)(.+)(\\..+)", "\\2\\3\\4 \\2\\1\\4", "g") ; print r ; }' | \
xargs -L1 mv -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment