Hi..
I am a total newbie to writing scripts. I am trying to execute a program through a script, but I keep getting 'unexpected end of file' error.
q=1.170
while [ $q -lt 1.405 ]; do
./a.out $q
q = $(($q + 0.005))
done
Please tell me the correct way to do this.