How do I iterate over a range of numbers in Bash when the range is given by a variable?
I know I can do this (called \"sequence expression\" in the Bash documentatio
Another layer of indirection:
for i in $(eval echo {1..$END}); do ∶