From d76938c9fed8ed10b62297e92a26acbb58516d03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B9=BB=E5=A2=83=E4=BA=91=E5=9B=BE?= <31980412+illusorycloud@users.noreply.github.com> Date: Tue, 19 Mar 2019 14:05:39 +0800 Subject: [PATCH] Update Shell.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 转义符与双引号问题 --- "\346\223\215\344\275\234\347\263\273\347\273\237/Shell.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/\346\223\215\344\275\234\347\263\273\347\273\237/Shell.md" "b/\346\223\215\344\275\234\347\263\273\347\273\237/Shell.md" index 4179f2702bb..9f3ae871ee4 100644 --- "a/\346\223\215\344\275\234\347\263\273\347\273\237/Shell.md" +++ "b/\346\223\215\344\275\234\347\263\273\347\273\237/Shell.md" @@ -210,7 +210,7 @@ expr length "$name"; expr 5+6 // 直接输出 5+6 expr 5 + 6 // 输出 11 ``` -对于某些运算符,还需要我们使用符号"\"进行转义,否则就会提示语法错误。 +对于某些运算符,还需要我们使用符号`\`进行转义,否则就会提示语法错误。 ```shell expr 5 * 6 // 输出错误