Shellwhile循环的例子

下面是一个用while循环来显示从0到9的例子:

x=0
while [ $x -lt 10 ]
do
	echo sx
	x='expr $x+1'
done
原文地址:https://www.cnblogs.com/junzhkevin/p/2196766.html