作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个运行另一个 bash 脚本的 bash 脚本,但是第一个 bashscript 在继续之前没有等待第二个 bash 脚本完成,我如何强制它等待?
例如:
#!/bin/bash
# first.sh
#call to secondary script
sh second.sh
echo "second.sh has completed"
echo "continuing with the rest of first.sh..."
现在的方式,它将运行 second.sh,然后继续,而不等待 second.sh 完成。
最佳答案
因为我在几个脚本中使用了这样的方案 - 只需使用 source
在同一个 shell 副本中调用第二个脚本。
在 script-1
中:
source script2.sh
或:
. script2.sh
因此 - 在 script2.sh
结束所有任务之前,script-1
中的任何命令都不会继续执行。
小例子。
第一个脚本:
$ cat script-1.sh
#!/bin/bash
echo "I'm sccript $0."
echo "Runnig script-2..."
source script-2.sh
echo "script-2.sh finished!"
第二个脚本:
$ cat script-2.sh
#bin/bash
echo "I'm script-2. Running wait operation..."
sleep 2
echo "I'm ended my task."
工作原理:
$ ./script-1.sh
I'm sccript ./script-1.sh.
Runnig script-2...
I'm script-2. Running wait operation...
I'm ended my task.
script-2.sh finished!
关于Bash Script 调用另一个 bash 脚本并等待它完成后再继续,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2270081/
我是一名优秀的程序员,十分优秀!