while [condition]
do
for [condition]
do
if [ "$x" > 3 ];then
break
fi
done
if [ "$x" > 3 ];then
continue
fi
done
在上面的脚本中,我必须测试"$x" > 3
两次。实际上,我第一次测试它时,如果它是真的,我想逃避 while 循环并继续下一个 while 循环。
有没有更简单的方法,所以我可以使用类似的东西continue 2
来逃避外循环?