#!/bin/sh
#@(#) tex23:  Translate the ^cirka^u \$1 file to ./novaj-vortoj.l3
export LC_ALL=C
sed -e 's/\^c//g; s/\^C//g' \
 -e 's/\^g//g; s/\^G//g' \
 -e 's/\^h//g' \
 -e 's/\^H//g' \
 -e 's/\^j//g' \
 -e 's/\^J//g' \
 -e 's/\^s//g' \
 -e 's/\^S//g' \
 -e 's/\^u//g' \
 -e 's/\^U//g' < $1 | sort -u > novaj-vortoj.l3

# Local variables:
# coding: latin-3
# end:
