如何传递Ant脚本的参数,它是通过shell脚本调用的



我需要通过shell脚本调用ant脚本。让我们考虑ant脚本的参数是a、b、c。我如何传递这些变量的参数?我必须提供ant调用shell脚本所需的参数。有人能帮我一下吗?

你的意思是从命令行给属性赋值吗?如果是,请尝试

-DpropertyName=itsValue
例如,

<project>
    <target name="hi">
        <property name="person" value="world"/>
        <echo message="Hello ${person}"/>
    </target>
</project>

ant -Dperson="MerryPrankster" hi
收益率

 [echo] Hello MerryPrankster

相关内容

  • 没有找到相关文章

最新更新