Tagged Questions
0
votes
3answers
971 views
Why does this incrementing for loop return a bad variable?
I'm trying to call this shell script from within the CLI of GRASS GIS:
for (( day=5; day<367; day+5 )); do
# commands that I've tested without a loop.
done
exit 0
returns
Syntax error: Bad ...