#!/bin/csh -f
#
#	Removes PostScript comment lines, lines beginning with "%"s.
#
#					M. Yokoyama
#

awk '{if (substr($0,1,1)\!="%") print $0}' $argv

exit 0