I want to write a loop in bourne shell which iterates a specific set of numbers. Normally I would use seq
for i in `seq 1 10 15 20`
#do stuff
loop
But seemingly on this Solaris box seq does not exist. Can anyone help by providing another solution to iterating a list of numbers?
Thanks, Chris