shell for循环

Posted 寻坑者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell for循环相关的知识,希望对你有一定的参考价值。

for((i=0;i<120;i++))
do
result=`echo dump|nc 127.0.0.1 2181 |grep runtime|grep service |grep vipapis.inventory`;
if [ "${result}" = "" ]
then
#echo $result;
echo "service not found in ZK, waiting ...";
sleep 1;
fi
done

参考:http://www.linuxidc.com/Linux/2012-02/53030.htm

以上是关于shell for循环的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 这个简单的代码片段显示了如何使用有符号整数在C中完成插值。 for()循环确定要插入的范围

在 Activity 内部,如何暂停 for 循环以调用片段,然后在按钮单击片段后恢复循环以重新开始

shell脚本编程高级篇

bash shell for循环

将vscode打造成无敌的IDE打造shell IDE--三大神器

shell脚本编程循环之for/while/untill循环