Bash script -----------syntax error: unexpected end of file
#!bin/bash
for i in $(seq 10 0.01 100 )
do
for j in $(seq 0 0.01 100)
do
./test 10 50 $i $j 2 2 5
done
exit 0
Can anyone see any reasons causing "syntax error: unexpected end of file" in this pathetic short script?
THANK YOU
|