Bash for Schleife 1 бис 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