bash-handbook
bash-handbook copied to clipboard
enhancement
Brace expansion
echo {00..8..2} # 00 02 04 06 08
U can clarify the rule here as it's {00..8..2} represents {start..end..steps}
like $ echo {0..10..3}
output: 0 3 6 9