Skip to content

Instantly share code, notes, and snippets.

@sampollard
Created November 21, 2015 07:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sampollard/3d6189144efc9806167b to your computer and use it in GitHub Desktop.
Save sampollard/3d6189144efc9806167b to your computer and use it in GitHub Desktop.
Add (feat. Minions) to every mp3 file song title
#!/bin/bash
for song in $(find ~ -iname *.mp3)
do
title=$(id3info $song | awk -F ':' '/TIT2/{print $NF}')
id3tag -s "$title (feat. Minions)" $song
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment