The way to iterate over a range in bash is
for i in {0..10}; do echo $i; done
What would be the syntax for iterating over the sequence with a step? Say, I would like to get only even number in the above example.
feedback
|
|
I'd do
(though of course | |||||
feedback
|
|
Pure Bash, without an extra process:
| ||||
|
feedback
|
|
Bash 4's brace expansion has a step feature:
No matter if Bash 2/3 (C-style for loop, see answers above) or Bash 4, I would prefer anything over the 'seq' command. | |||||||||||||
feedback
|