9 lines
53 B
Bash
9 lines
53 B
Bash
|
#!/bin/zsh
|
||
|
|
||
|
x=0
|
||
|
while
|
||
|
do
|
||
|
echo $x
|
||
|
x=$((x+1))
|
||
|
done
|