Register now and start sharing your code snippets.
-->
Remove ID3 tags from MP3 files recursively.
Shell Script (Bash) posted 10 months ago by marko
Remove id3 tags from MP3 files recursively.
1 #!/bin/bash 2 # By Marko Haapala 3 # requirements: 4 # id3ed - apt-get install id3ed 5 IFS=$'\n' 6 for mp3_file in $(find ./ -type f -iname '*.mp3'); do 7 id3ed -r "${mp3_file}" 8 done