# this command strips off empty lines and page feeds in sas *.lst files
# result is placed in *.prt file
# should be easy to translate this into perl -- volunteers?
#
sed -e '/SAS/d' -e '/^ *$/d' -e 's///' $*.lst > $*.prt
