Skip to content

Instantly share code, notes, and snippets.

View GautamAnghore's full-sized avatar

Gautam Anghore GautamAnghore

  • Seattle
  • 20:02 (UTC -08:00)
View GitHub Profile
# Rename mp3 files to naming convention of no number and no special character and hence making your music library cool again to read
# run this file in using terminal in music directory by command ./Mp3FileNameBeautify.sh
# and you are welcome to contribute, customize or whatever.
# suggestions are welcomed
# by - HARSH BHATIA
for i in *.mp3;
do
src=$i
# remove mp3 from name
tgt=$(echo $i | sed -E 's/(.mp3)//g')