RosettaCodeData/Task/Loops-For-with-a-specified-step/UNIX-Shell/loops-for-with-a-specified-step-7.sh
2016-12-05 22:15:40 +01:00

3 lines
39 B
Bash

foreach x (`jot - 2 8 2`)
echo $x
end