6 lines
73 B
Bash
6 lines
73 B
Bash
for i in `jot 5`; do
|
|
for j in `jot $i`; do
|
|
printf \*
|
|
done
|
|
echo
|
|
done
|