开发者

Need to create a folder in remote server usint ant

开发者 https://www.devze.com 2023-03-13 13:41 出处:网络
using ant scp i can able to copy a file from local system(windows) to server(linux).so what i need is i want to create a folder by the system date at specified directory in linux system using ant and

using ant scp i can able to copy a file from local system(windows) to server(linux).so what i need is i want to create a folder by the system date at specified directory in linux system using ant and copy the file to the folder which created..

this is my ant script:

<sshexec host="hostname:22" username="****" trust="true"
     passw开发者_C百科ord="fcubs" 
     command="mkdir $/home/desktop/<folder to be creted here>"/>
   <scp todir="username@hostname:/home/desktop" password="*****" trust="true">
      <fileset dir="D:\kkk"/>
   </scp>

pls help me thanks in advance


you can use such linux command which creates directory:

export ATD=`date '+%h-%d-%Y_%H:%M:%S'` && cd /path/to/specified/dir && mkdir $ATD && cd $ATD

it will create dir (for example) "Nov-14-2012_17:41:02" in the dir /path/to/specified/dir and will cd to it.

after executing this command you can simply copy your file to the directory.

0

精彩评论

暂无评论...
验证码 换一张
取 消