You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
296 B
10 lines
296 B
#!/bin/sh |
|
# Simple check of transliteration failure. |
|
# Usage: check-translitfailure SRCDIR FILE FROMCODE TOCODE |
|
srcdir="$1" |
|
file="$2" |
|
fromcode="$3" |
|
tocode="$4" |
|
../src/iconv_no_i18n -f "$fromcode" -t "$tocode"//TRANSLIT < "${srcdir}"/"$file"."$fromcode" >/dev/null 2>/dev/null |
|
test $? = 1 |
|
exit $?
|
|
|