shell的if语句中怎么调用别的shell脚本
时间: 2023-06-30 21:24:06 浏览: 77
Linux shell脚本编程if语句的使用方法(条件判断)
5星 · 资源好评率100%
可以使用以下方式在 if 语句中调用别的 shell 脚本:
```shell
if [ condition ]; then
# 在这里调用别的 shell 脚本
sh /path/to/other/script.sh
fi
```
其中,`condition` 是 if 语句中的条件,如果条件成立,则会执行 `then` 后面的命令,即调用其他的 shell 脚本。 `sh /path/to/other/script.sh` 是调用其他脚本的命令,其中 `/path/to/other/script.sh` 是其他脚本的路径。
阅读全文