作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要从 shell 脚本运行一个 ant 脚本,如果成功执行了 ant 脚本,我必须得到返回码 0 或者在失败的情况下为 1。谁能告诉我如何实现?
最佳答案
cd ~/yoursourcedir/
ant
if [[ $? -ne 0 ]]
then
echo "error happend"
fi
$?
包含上一个命令的错误代码,在本例中为
ant
.
-ne 0
表示不等于 0,因此如果发生任何错误,请执行
echo
.
ant -buildfile build.xml
关于shell - 如何从shell脚本运行ant脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6746327/
我是一名优秀的程序员,十分优秀!