#! /bin/sh
# Usage: to-ascii <isolatin-file> <ascii-file>
cv-to-ascii < $1 > $2
# The -r is for GNU touch.
touch -r $1 $2 >/dev/null 2>&1
