shell脚本中执行其他shell脚本怎么写实例
时间: 2023-11-09 18:03:17 浏览: 66
在shell脚本中执行其他shell脚本,可以使用以下两种方式:
1. 使用source命令或"."命令来执行其他脚本,例如:
```
source /path/to/other/script.sh
. /path/to/other/script.sh
```
2. 直接执行其他脚本,例如:
```
/path/to/other/script.sh
```
需要注意的是,如果使用第二种方式执行脚本,需要给脚本添加可执行权限,即使用chmod命令将脚本设置为可执行。
阅读全文