Skip to content

Commit d76938c

Browse files
authored
Update Shell.md
fix: 转义符与双引号问题
1 parent 81b7848 commit d76938c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

操作系统/Shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ expr length "$name";
210210
expr 5+6 // 直接输出 5+6
211211
expr 5 + 6 // 输出 11
212212
```
213-
对于某些运算符,还需要我们使用符号"\"进行转义,否则就会提示语法错误。
213+
对于某些运算符,还需要我们使用符号`\`进行转义,否则就会提示语法错误。
214214

215215
```shell
216216
expr 5 * 6 // 输出错误

0 commit comments

Comments
 (0)