#!/bin/bash

# converts the ID3 tag info in files given as arguments to ASCII-only,
# using the Perl Unidecode module

for FILE in "$@"; do
    echo "$FILE"
    ./id3dump "$FILE" | unidecode | ./id3load "$FILE"
done
