gpt4 book ai didi

shell - 如何从shell脚本运行ant脚本?

转载 作者:行者123 更新时间:2023-12-04 06:19:41 26 4
gpt4 key购买 nike

我需要从 shell 脚本运行一个 ant 脚本,如果成功执行了 ant 脚本,我必须得到返回码 0 或者在失败的情况下为 1。谁能告诉我如何实现?

最佳答案

cd ~/yoursourcedir/
ant
if [[ $? -ne 0 ]]
then
echo "error happend"
fi
$?包含上一个命令的错误代码,在本例中为 ant . -ne 0表示不等于 0,因此如果发生任何错误,请执行 echo .

您可以为 ant 指定标准参数,即您的构建文件:
ant -buildfile build.xml

Summary of ant run options

关于shell - 如何从shell脚本运行ant脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6746327/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com