ANT中的SSHEXEC和SCP任務用法
阿新 • • 發佈:2019-01-22
ANT中的SSHEXEC和SCP任務
本文通過簡單示例介紹如何利用ant的sshexec和scp執行ssh和scp命令的方法。
1 安裝依賴jar包
從JCRAFT上下載最新的jsch-*.jar。我下載的是jsch-0.1.53.jar。
將該jar檔案拷貝到$ANT_HOME/lib/下,即ant主目錄下的lib/目錄下。
2 SSHEXEC示例
程式碼:
exec.xml
<?xml version="1.0" encoding="UTF-8"?>
<project default="touch_somefile">
<target name ="touch_somefile">
<sshexec host="localhost"
username="${username}"
password="${password}"
command="touch /tmp/somefile2"
trust="true"/>
</target>
</project>
程式碼中的trust=”true”相當與ssh的 -o “StrictHostKeyChecking no“選項。
執行命令:
ant -Dusername =test -Dpassword=1234 -f exec.xml
3 SCP示例
核心程式碼:
<scp todir="${username}:${password}@somehost:/home/chuck">
<fileset dir="src_dir">
<include name="**/*.java"/>
</fileset>
</scp>
<scp todir="${username}:${password}@somehost:/home/chuck">
<fileset dir="src_dir" excludes="**/*.java"/>
</scp>