如何将此 unix 命令放入 ant 脚本中?
jar -xvf test.ear out.war | jar -x ; cd directory ; jar -xvf ../out.war
这行得通吗?
<target name="unear">
<echo>***Un-tarring***</echo>
<exec executable="jar" outputproperty="noOfFiles">
<arg value="-xvf" />
<arg value="test.ear out.war" />
<arg value="|" />
<arg value="jar" />
<arg value="-x" />
<arg value=";" />
<arg value="cd directory" />
<arg value=";" />
<arg value="jar" />
<arg value="-xvf" />
<arg value="../out.war" />
</exec>
</target>