I´m trying do do a simple counter:
max=100
count=1
while [[ $count -le $max]]
do
echo "$count"
((count++))
done
This gives me a syntax error in conditional expression near do.
What´s my issue? (probably something obvious)
The idea is then to raise the max from 100 to 200 and so forth in a superior loop so I will get a new file to manipulate with a python program 100 lines each time, but that´s irrelevant here.