« Shell脚本之无限循环的两种方法 时间:2024-3-2 16:05 作者:韩俊 分类: Linux for 实现: #!/bin/bash set i=0 set j=0 for((i=0;i<10;)) do let "j=j+1" echo "-------------j is $j -------------------" done while实现: #!/bin/bash set j=2 while true do let "j=j+1" echo "----------j is $j--------------" done 标签: linux 上一篇shell脚本实现监控shell脚本的执行流程及变量的值 下一篇shell脚本中取消重定向的方法实例 热门推荐 1 Nginx主机域名配置如何实现2 Linux下安装配置MySQL3 docker-compose yml文件编写4 Shell脚本定时备份清除运行系统日志的代码5 Shell脚本实现检测Cygwin最快的镜像站点6 shell脚本实现随机生成10个8位密码7 shell 中数学计算总结8 windows鼠标不动了如何用键盘控制9 expect中为send语句上加变量的代码10 Linux 中的Edquota命令