#!/bin/sh

echo 'Removing most of the PROCHECK derivative files'

FILES="*.d[01]? *.html *.sum *.lan *.nb *.new *.rin *.sco anglen.log clean.log nb.log pplot.log secstr.log procheck.par *.ps *.pln *.sdh procheck.prm bplot.log tplot.log"


for file in $FILES
do
  if [ -f $file ] ; then 
    echo rm $file
    rm $file
  fi
done
