shell for loop range code example
Example 1: for i in range bash
#Just use command seq to iterate a range from start to end
END=10
for i in $(seq 1 $END); do echo $i; done
Example 2: bash for interval
for i in $(seq 1 $END); do echo $i; done
Example 3: bash list of integers
vals=($(seq 0 0.1 2.5))