SyntaxFix
Write A Post
Hire A Developer
Questions
I'd do
for i in `seq 0 2 10`; do echo $i; done
(though of course seq 0 2 10 will produce the same output on its own).
seq 0 2 10
Note that seq allows floating-point numbers (e.g., seq .5 .25 3.5) but bash's brace expansion only allows integers.
seq
seq .5 .25 3.5