#!/bin/sh
# Massage a bunch of .eps files from BBL Typographic for use under
# COHERENT's troff
# by fwb, 3/30/94

HERE=

for i in *.eps
do
# edit a file
ed $i << \!
1,/%/-1d
/showpage/
/showpage/,$d
$
a
end
.
wq
!

done
