RosettaCodeData/Task/Loops-For/UNIX-Shell/loops-for-4.sh

7 lines
73 B
Bash

foreach i (`jot 5`)
foreach j (`jot $i`)
echo -n \*
end
echo ""
end