18 lines
530 B
Markdown
18 lines
530 B
Markdown
|
- bash -x 脚本执行过程
|
||
|
```
|
||
|
me@me-EQ59:~/shell_demo/scripts/shell01$ bash -x ./first_shell.sh
|
||
|
+ echo 'hello world'
|
||
|
hello world
|
||
|
+ echo 'hello world'
|
||
|
hello world
|
||
|
+ echo 'hello world'
|
||
|
hello world
|
||
|
me@me-EQ59:~/shell_demo/scripts/shell01$
|
||
|
```
|
||
|
- bash -n 脚本语法syntax 检测
|
||
|
```
|
||
|
me@me-EQ59:~/shell_demo/scripts/shell01$ bash -n first_shell.sh
|
||
|
first_shell.sh: 行 6: 寻找匹配的 `"' 时遇到了未预期的 EOF
|
||
|
first_shell.sh: 行 7: 语法错误:未预期的文件结束符
|
||
|
me@me-EQ59:~/shell_demo/scripts/shell01$
|
||
|
```
|