bash enum

# loop from 0 to 10
for i in {0..10}; do echo $i; done
0
1
2
3
4
5
6
7
8
9
10
Alexander Fieroch