Blame view

conv-accents.sh 198 Bytes
f6189412   forget   Script to convert...
1
2
3
4
5
6
  #!/bin/bash
  
  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