[Ant]scp target

来源:互联网 发布:java自动发送短信sms 编辑:程序博客网 时间:2024/06/06 05:15
You can use sch target to
At first, you should download jsch-0.1.24 and copy it to $ANT_HOME/lib

1.copy a file to remote server
<scp file="c:/cmd.txt" todir="root:123456@192.168.122.180:/tmp" trust="true"/>

<scp file="c:/cmd.txt" todir="root@192.168.122.180:/tmp" password="123456" trust="true"/>

2.
拷贝远端文件本地
<scp file="root:123456@192.168.122.180:/tmp/cmd.txt" todir="D:/my-app"   trust="true"/>

3.拷贝远端目录到本地,将以递归形式操作
<scp file="root:123456@192.168.122.180:/tmp/*" todir="d:/my-app" trust="true"/>

4.拷贝本地目录中的内容到远端,递归形式,但不在服务器上建立my-app目录
<scp todir="root:123456@192.168.122.180:/tmp/" trust="true">
    <fileset dir="d:/my-app"/>
</scp>

5.拷贝一系列的文件到远端,会建立相应的层次目录,不建立my-app目录
<scp todir="root:123456@192.168.122.180:/tmp" trust="true">
    <fileset dir="d:/my-app">
       <include name="**/*.java" />
    </fileset>
</scp>

<scp todir="root:123456@192.168.122.180:/tmp" trust="true">
    <fileset dir="d:/my-app" excludes="**/*.java"/>
</scp>