#!/bin/bash i=0 (while [ $i -lt 10 ] do echo hello i=`expr $i + 1` #sleep 1 # 注释了吧,除了费时间以外没什么用处。 done ) echo "i="$i