企业🤖AI智能体构建引擎
,智能编排和调试,一键部署,支持私有化部署方案
广告
# 语法一览 ``` while condition do command done ``` 示例 ``` #!/bin/bash int=1 while(( $int<=5 )) do echo $int let "int++" done ``` 输出结果 ``` 1 2 3 4 5 ``` # 无限循环 ``` while true do command done ```
前言
教程
快速熟悉语法并上手
传递参数
流程控制
if 条件判断
for 循环
while 循环
case 选择(switch)
函数
文件包含
常用代码片
组/用户
文件/目录
杂项
crontab 定时任务