Here is my script:
#!/bin/bash
for ((i=0.5; i<=2.0; i+= 0.05)); do
( ./myExe -l t2000.bin i
) &
done
wait
and the error is:
((: i=0.5: syntax error: invalid arithmetic operator (error token is ".5")
I know this doesn't work but I've heard that there's a way to do something like it, any suggestions?