写一个用shell脚本执行shell脚本
时间: 2023-11-21 10:57:35 浏览: 103
可以使用以下命令来执行一个shell脚本:
```shell
sh /path/to/script.sh
```
其中,`/path/to/script.sh`是要执行的shell脚本的路径。如果你想要在脚本中指定解释器,可以在脚本的第一行添加`#!/bin/bash`或`#!/bin/sh`等指令。
如果你想要在一个shell脚本中执行另一个shell脚本,可以使用以下命令:
```shell
sh /path/to/another_script.sh
```
或者,如果你想要在当前shell中执行另一个脚本,可以使用以下命令:
```shell
source /path/to/another_script.sh
```
阅读全文