#!/bin/sh
# Shell program to cat PostScript output files generated
# from itrans (-P option). Prepends the font description file
# and the prologue file. Assumes Devnagari Output............
# For bengali, use banglasc.ps instead of devnac.ps

# set LIBDIR to the itrans lib directory
LIBDIR=/usr1/avinash/ITRANS/lib

# set DOCAT to empty if you want output on stdout, else 
# assign to a pipe to the printer
DOCAT=
# DOCAT="| lp"
# DOCAT="| lp -oh"

# for Devnac
eval cat $LIBDIR/devnac.ps $LIBDIR/itrans.pro $* $DOCAT
# eval need to evaluate the | char, if present, in DOCAT
