:
# 3 Apr 89
#
# tprint.sh	- shell script to transparently print a file to a VT100
#		  or emulation.
#
#	Usage: tprint <filename>
#		where <filename> is the name of the file to be printed
#
# T. Lambert
echo "\033[5i"
cat $1
echo "\033[4i"
