Skip to content

Instantly share code, notes, and snippets.

@moaazsidat
Created July 20, 2017 21:12
Show Gist options
  • Save moaazsidat/dc4bc4a44af9d82f86213c652737f8a6 to your computer and use it in GitHub Desktop.
Save moaazsidat/dc4bc4a44af9d82f86213c652737f8a6 to your computer and use it in GitHub Desktop.
command to set mp3 title to file name
#!/bin/sh
FILES=*.mp3
for f in $FILES
do
echo "Processing ${f%.*}"
id3tag "--song=${f%.*} $f"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment