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

9 lines
85 B
Bash

for i in {1..5}
do
for ((j=1; j<=i; j++));
do
echo -n "*"
done
echo
done