for i in $(seq 1 $END); do echo $i; done
edit: I prefer seq
over the other methods because I can actually remember it 😉
for i in $(seq 1 $END); do echo $i; done
edit: I prefer seq
over the other methods because I can actually remember it 😉