#!/bin/sh
echo " NEC2  and Post Processor     by I2KFX"
echo
if [ -f Antenne/$1.nec ]; then
   cp Antenne/$1.nec input_nec
   nec2
   cp output_nec Risultati/$1.out
   rm -f input_nec
   rm -f output_nec
else
   echo "File inesistente"
   echo
fi
# less Risultati/$1.out
npp $1
