echo -n "File name for propagation? (full name, no path)  "; read infile
if [ ! -f $infile ]; then
   echo
   echo " ERROR - $infile - File not found!!"
   echo
   exit 1
fi
echo -n "How many copies? "; read count
loops=1
outfile=`echo $infile | cut -d"." -f1`      # cuts the .mp3 off
extn=`echo $infile | cut -d"." -f2`         # cuts the filename off
while [ $loops -le $count ] ; do            # looping to create copies
   cpfile=$outfile"_"$loops"."$extn
   cp $infile $cpfile
   echo "   $cpfile"
   let loops+=1
done

