Skip to content

Commit

Permalink
doc: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove authored Oct 3, 2021
1 parent 6ed4219 commit a08ea17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1160,6 +1160,7 @@ case/select依靠在代码块的顶部或底部的条件判断来决定程序的

case它允许通过判断来选择代码块中多条路径中的一条。它的作用和多个if/then/else语句相同,是它们的简化结构,特别适用于创建目录。[demo30](./example/demo30)

> ```shell
> case "$variable" in
> ?"$condition1" )
> ?command...
Expand All @@ -1168,6 +1169,7 @@ case它允许通过判断来选择代码块中多条路径中的一条。它的
> ?command...
> ?;;
> esac
> ```
- 对变量使用`""`并不是强制的,因为不会发生单词分离。
- 每句测试行,都以右小括号`)`结尾。
Expand Down Expand Up @@ -1398,4 +1400,4 @@ echo "输入的两个数字之和为 $? !"
| $! | 后台运行的最后一个进程的ID号 |
| $@ | 与$*相同,但是使用时加引号,并在引号中返回每个参数。 |
| $- | 显示Shell使用的当前选项,与set命令功能相同。 |
| $? | 显示最后命令的退出状态。0表示没有错误,其他任何值表明有错误。 |
| $? | 显示最后命令的退出状态。0表示没有错误,其他任何值表明有错误。 |

0 comments on commit a08ea17

Please sign in to comment.