if [ $# -lt 3 ] then echo " " echo " ***** MULT ***** " echo " " echo " The program multiplies two files, value by value" echo " " echo " file11=file2*file3" echo " " echo " Syntax: mult " echo " " exit 0 else echo " " echo " ***** MULT ***** " echo " " echo "file1="$1 echo "file2="$2 echo "file3="$3 cp $1 fort.1 cp $2 fort.2 fi cat >mult.f <