#!/bin/sh
if test -f $1
then
  cp $1 .Eadfrith.junk
else
  echo '*** File not found'
  exit
fi
if test -f $1.ele
then
  cp $1.ele .Eadfrith.elec
fi
Eadfrith.exe
rm .Eadfrith.junk
if test -f .Eadfrith.elec
then
  rm .Eadfrith.elec
fi
