Skip to content

Instantly share code, notes, and snippets.

@jcleveley-zz
Created November 23, 2012 14:21
Show Gist options
  • Save jcleveley-zz/4135842 to your computer and use it in GitHub Desktop.
Save jcleveley-zz/4135842 to your computer and use it in GitHub Desktop.
For each MP3 file, set the filename as the song title
#!/bin/bash
# Description: For each MP3 file, set the filename as the song title
for i in *.mp3; do
SONG="$i"
id3v2 --song "$SONG" --artist "Quartershade" --album "Quartershade" "$i"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment