11 lines
296 B
Bash
11 lines
296 B
Bash
#!/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 $?
|