zip files, upload to ftp, unzip files

2006-02-09 Thread Andrus, Brooks
Hey, I'm an Ant noob, so I apologize in advance. I've created a simple build file which zips up a project and uploads it to an ftp site. The missing piece of the puzzle for me is how I can go about unzipping the file once its been uploaded. I'm not seeing anything in the ftp task that seems to

Re: zip files, upload to ftp, unzip files

2006-02-09 Thread Geoffrey Mitchell
sshexec? Andrus, Brooks wrote: Hey, I'm an Ant noob, so I apologize in advance. I've created a simple build file which zips up a project and uploads it to an ftp site. The missing piece of the puzzle for me is how I can go about unzipping the file once its been uploaded. I'm not seeing

Re: zip files, upload to ftp, unzip files

2006-02-09 Thread Alexey N. Solofnenko
Usually FTP is the worst option you have (at least SCP is secure). It is much better to mount destination directory locally and use simple copy or sync. If it is impossible, you can run rsync or unison with normal files without zipping them (they work incrementally, so next update will only

Re: zip files, upload to ftp, unzip files

2006-02-09 Thread Nicolas Vervelle
I use TAR+GZ to archieve, SCP to copy, SSH to execute commands remotely. You can check: http://cvs.sourceforge.net/viewcvs.py/jmol/Jmol-web/build-deploy.xml?view=markup De: Alexey N. Solofnenko [EMAIL PROTECTED] Usually FTP is the worst option you have (at least SCP is secure). It is much

RE: zip files, upload to ftp, unzip files

2006-02-09 Thread Andrus, Brooks
Awesome stuff--thanks for the responses! Brooks -Original Message- From: Nicolas Vervelle [mailto:[EMAIL PROTECTED] Sent: Thursday, February 09, 2006 3:30 PM To: Ant Users List Subject: Re: zip files, upload to ftp, unzip files I use TAR+GZ to archieve, SCP to copy, SSH to execute