diff --git a/conv-accents.sh b/conv-accents.sh new file mode 100755 index 0000000..c96907e --- /dev/null +++ b/conv-accents.sh @@ -0,0 +1,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 -- libgit2 0.21.2