for 在shell命令行的用法:
#for n in {1..10};do echo $n;done
while在shell命令行的用法:
#while true;do echo "123"; sleep 2 done
回复:谢谢