如何用shell脚本执行shell脚本
时间: 2023-11-21 08:57:35 浏览: 89
Android 如何执行shell脚本.doc
可以使用以下命令在shell脚本中执行另一个shell脚本:
```shell
sh /path/to/another_script.sh
```
其中,`/path/to/another_script.sh`是要执行的另一个shell脚本的路径。如果要在当前目录下执行另一个shell脚本,可以使用相对路径,例如:
```shell
sh ./another_script.sh
```
这将在当前目录下执行名为`another_script.sh`的shell脚本。
阅读全文