Ant高階功能

我就是曹總發表於2019-05-11

本篇省略ant簡單基本功能,先加上高階功能,附件是jar下載

1.ant遠端連線伺服器,操作伺服器

1.2 基本用法

<target name="stop_ear_tpsp_store_206">
  <sshexec host="10.58.22.206" username="zhangshang" password="123456"  command="ls -la" trust="true" />
</target>

2.ant迴圈執行


<taskdef name="foreach" classname="net.sf.antcontrib.logic.ForEach" classpath="/weblic/cc/ant-contrib-1.0b3.jar" />

1.2. 基本用法

<target name="scp_command_1">
<scp todir="zhangsan:123456@${iplist}:/weblogic/aa.ear/">
<fileset dir="/webligic/bb/">
<include name="**/*"/>
</fileset>
</scp>
</target>
<target name="scp_xx_1">
<echo>upload files </echo>
<foreach target="scp_command_1" list="10.58.22.1,10.58.22.2,10.58.22.3,10.58.22.4" delimiter="," param="iplist" >
</foreach>
</target>

龐順龍最後編輯於:4年前

內容均為作者獨立觀點,不代表八零IT人立場,如涉及侵權,請及時告知。

相關文章