#!/bin/sh
#	modlpr [archive] [page]
# Here is the correct way to modify something in the lpr settings.  This comes
# from  the ULTRIX notesfile, note 4920.8.  You probably need to be super-user
# to do this.  We should probably add params to this...

A=${1-lps_v3}
P=${2-LPS_FLAGPAGE}

cd /usr/lib/lpdfilters
ar xv $A'.a' $P
vi $P 
#	(read the comments towards the end and follow them).
ar rv $A'.'a $P

