我需要通过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