6 lines
76 B
Bash
6 lines
76 B
Bash
|
|
val=0
|
||
|
|
while true; do
|
||
|
|
echo $((++val))
|
||
|
|
[ $((val%6)) -eq 0 ] && break
|
||
|
|
done
|