Bash for-Schleife 1 bis 10

#Just use command seq to iterate a range from start to end
END=10
for i in $(seq 1 $END); do echo $i; done
Armandres