#!/bin/sh
#
if [ -e ampcal.dat ]
then
   rm ampcal.dat
fi
cat $1 |\
    { while read LINE
       do
          ampcaldb.pl $LINE
       done
    }
#
