#!/bin/sh

#	rtfmaptortf - crude hack to convert an rtf charset map to RTF
#	so you can run it through a translator and see what it does with
#	hex codes

#	Script type:	Bourne shell

#	10 Nov 93	Paul DuBois	dubois@primate.wisc.edu

cat << EOF
{\rtf
EOF
sed \
	-e "s/^\\(.*\\)[ 	][ 	]*0x\\(..\\)/\\1	0x\\2	<\\\\\\'\\2>/" \
	-e 's/$/\\par/' \
	$*
cat << EOF
}
EOF
