I want to write a loop in Bourne shell which iterates a specific set of numbers. Normally I would use seq:
seq
for i in `seq 1 10 15 20` #do stuf
I find that this works, albeit ugly as sin:
for i in `echo X \n Y \n Z ` ...