#!/bin/sh
# Translates text file from koi8 to cp1251 (windows-1251) codepage
#
# D.Kovalov

LANG=C; export LANG

tr \
'ȭ֤ͦ' \
'եƪ̲ޯ' \




