Blame view

conv-accents.sh 185 Bytes
04b8ce94   vsalingu   Modification de l...
1
2
3
4
  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