I need some help with a bash script. Script needs to rename all files in a directory to its md5 sum + extension.
I have found the bash script below, but it needs to be changed so that it will add the extension.
md5sum * | sed 's/^\(\w*\)\s*\(.*\)/\2 \1/' | while read LINE; do mv $LINE; done