Ubuntu循环语句是哪个

主机教程 建站分享 2年前 (2022-12-19) 176次浏览

文章摘要:Ubuntu循环语句是哪个

Ubuntu循环可以用while,例如: 1.每隔1秒无限循环命令: //格式 while true ; do […]

Ubuntu循环可以用while,例如:

1.每隔1秒无限循环命令:

//格式

while true ; do 命令 ; sleep 1 ; done;

//示例

while true ; do sudo python ./RN2483_test.py ; sleep 1; done;

2.每隔0.5秒执行n次命令:

//格式

mycount=0; while(($mycount//示例

mycount=0; while(($mycount<1000));do sudo python ./RN2483_test.py; ((mycount = $mycount+1));sleep 0.5; done;


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:Ubuntu循环语句是哪个
文章链接:http://www.7966.org/post/15083.html
转载请注明出处

喜欢 (0)