typora/note/Shell/until 循环语法.md

8 lines
115 B
Markdown
Raw Permalink Normal View History

2024-12-11 21:48:55 -05:00
- 条件为假就进入循环,条件为真就退出循环
- 语法结构
```
until condition
do
command
done
```