conv-accents.sh 185 Bytes
if [ $# -ne 1 ]
then echo "Usage: $0 /usr/share/dict/your_language (creates a local copy with accents converted)"
else iconv -f utf8 -t ascii//TRANSLIT $1 > `basename $1`-no-accents
fi