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