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