shell脚本如何调用另一个shell脚本文件
时间: 2023-11-09 13:03:44 浏览: 148
Shell脚本中引用、调用另一个脚本文件的2种方法
可以使用以下命令来调用另一个shell脚本文件:
```
source /path/to/another/script.sh
```
或者
```
. /path/to/another/script.sh
```
其中,`/path/to/another/script.sh`是要调用的脚本文件的路径。
阅读全文
Shell脚本中引用、调用另一个脚本文件的2种方法