7 lines
70 B
Bash
7 lines
70 B
Bash
|
|
#!/bin/sh
|
||
|
|
num=0
|
||
|
|
while true; do
|
||
|
|
echo $num
|
||
|
|
num=`expr $num + 1`
|
||
|
|
done
|