Zip and ftp script?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Zip and ftp script?
# 8  
Old 07-24-2013
Quote:
Originally Posted by Corona688
Then see first what this does:

Code:
for DIR in *
do
        echo $DIR
done

that showed me a list of the folders in my working directory
# 9  
Old 07-24-2013
Code:
function FTP_ZIP()
{
      zip_file=$1
      ftp -n remote_server <<FTP
         quote USER remote_username
         quote PASS remote_password
         prompt noprompt
         put $zip_file
         ls -l
         bye
FTP
}

for X in *
do
        zip -r "$dir.zip" dir
        FTP_ZIP $dir.zip
        rm "$dir.zip"
done

# 10  
Old 07-24-2013
Quote:
Originally Posted by Little
Code:
function FTP_ZIP()
{
      zip_file=$1
      ftp -n remote_server <<FTP
         quote USER remote_username
         quote PASS remote_password
         prompt noprompt
         put $zip_file
         ls -l
         bye
FTP
}

for X in *
do
        zip -r "$dir.zip" dir
        FTP_ZIP $dir.zip
        rm "$dir.zip"
done


thanks, this is what it said , I tried -i but it didnt work either

Code:
zip error: Nothing to do! (try: zip -r .zip . -i dir)
Interactive mode off.
local: .zip: No such file or directory
drwxr-xr-x    6 jo   jo         4096 Jul 24 21:02 .
drwxr-xr-x    6 jo   jo         4096 Jul 24 21:02 ..
drwxr-xr-x    3 jo   jo         4096 Jul 24  2013 test

rm: cannot remove `.zip': No such file or directory


Last edited by Scott; 07-26-2013 at 08:32 AM.. Reason: Code tags
# 11  
Old 07-24-2013
Code:
 
for dir in *
do
        zip -r "$dir.zip" $dir
        FTP_ZIP $dir.zip
        rm "$dir.zip"
done

# 12  
Old 07-24-2013
Quote:
Originally Posted by DGPickett
Code:
 
for dir in *
do
        zip -r "$dir.zip" $dir
        FTP_ZIP $dir.zip
        rm "$dir.zip"
done


perfect! thanks to all of you guys Smilie

---------- Post updated at 04:53 PM ---------- Previous update was at 03:56 PM ----------

it was fine until it hit a folder with spaces eg, John set 1

Code:
zip error: Nothing to do! (try: zip -r John Set 1.zip . -i John Set 1)

how can I process the folders with spaces?

thanks

Last edited by Scott; 07-26-2013 at 08:32 AM.. Reason: Code tags
# 13  
Old 07-24-2013
quote it. I'm not 100% sure the FTP part will work.

Code:
function FTP_ZIP()
{
      zip_file=$1
      ftp -n remote_server <<FTP
         quote USER remote_username
         quote PASS remote_password
         prompt noprompt
         put "$zip_file"
         ls -l
         bye
FTP
}

for dir in *
do
        zip -r "$dir.zip" "$dir"
        FTP_ZIP "$dir.zip"
        rm "$dir.zip"
done

# 14  
Old 07-24-2013
Quote:
Originally Posted by Corona688
quote it. I'm not 100% sure the FTP part will work.

Code:
function FTP_ZIP()
{
      zip_file=$1
      ftp -n remote_server <<FTP
         quote USER remote_username
         quote PASS remote_password
         prompt noprompt
         put "$zip_file"
         ls -l
         bye
FTP
}

for dir in *
do
        zip -r "$dir.zip" "$dir"
        FTP_ZIP "$dir.zip"
        rm "$dir.zip"
done

perfect Smilie thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Help with Zip and FTP Shell Script

I am trying to combine zip and ftp upload in one script but for some reason I can't get it to work. It zips properly but does not ftp, seems like it just ignores ftp. Any help would be greatly appreciated. Thanks! #!/bin/sh cd /home/user/test zip -r test.zip * FOLDER='/home/user/test'... (2 Replies)
Discussion started by: shimabuku
2 Replies

2. Shell Programming and Scripting

How can we Zip multiple files created on the same date into one single zip file.?

Hi all i am very new to shell scripting and need some help from you to learn 1)i have some log files that gets generated on daily basis example: i have abc_2017_01_30_1.log ,2017_01_30_2.log like wise so i want to zip this 4 logs which are created on same date into one zip folder. 2)Post zipping... (1 Reply)
Discussion started by: b.saipriyanka
1 Replies

3. UNIX for Beginners Questions & Answers

How can we Zip multiple files created on the same date into one single zip file.?

Hi all i am very new to shell scripting and need some help from you to learn 1)i have some log files that gets generated on daily basis example: i have abc_2017_01_30_1.log ,2017_01_30_2.log like wise so i want to zip this 4 logs which are created on same date into one zip folder. 2)Post zipping... (2 Replies)
Discussion started by: b.saipriyanka
2 Replies

4. Shell Programming and Scripting

Zip Multiple files to One .zip file in AIX system

Hi I have a requirement in unix shell where I need to zip multiple files on server to one single .zip file. I dont see zip command in AIX and gzip command not doing completely what I want. One I do .zip file, I should be able to unzip in my local Computer. Here is example what I want... (9 Replies)
Discussion started by: RAMA PULI
9 Replies

5. Shell Programming and Scripting

zip the folder and loaded to ftp

Hi , I am working on a script which will do the below things 1) It will checkout from the repository 2) then zip that checkout stuff 3) and put the zip folder to FTP server Here my question is I am able to checkout successfully through this coomand svn co... (2 Replies)
Discussion started by: rohit22hamirpur
2 Replies

6. UNIX for Dummies Questions & Answers

extract rar/zip files from pc DIRECTLY on xbox (FTP)

Hello I've an old xbox connected to Ubuntu 8.04 with an ethernet cable. I use gFTP to transfer files on xbox (through FTP). When I have to transfer a rar file, first of all I have to extract it on ubuntu, then on xbox. I would like to transfer rar files directly on xbox. Is it possible with... (4 Replies)
Discussion started by: paolobitta
4 Replies

7. UNIX for Dummies Questions & Answers

diff between TAR+zip+FTP and TAR+FTP

Huloo, whats diff between TAR+zip+FTP and TAR+FTP,can't we simpply FTP a file without Zipping it? TAR is simply for Archiving ,then why do we need to Zip it? :( (1 Reply)
Discussion started by: swarup2008
1 Replies

8. UNIX for Dummies Questions & Answers

unzip .zip file and list the files included in the .zip archive

Hello, I am trying to return the name of the resulting file from a .zip archive file using unix unzip command. unzip c07212007.cef7081.zip Archive: c07212007.cef7081.zip SecureZIP for z/OS by PKWARE inflating: CEP/CEM7080/PPVBILL/PASS/G0063V00 I used the following command to unzip in... (5 Replies)
Discussion started by: oracledev
5 Replies

9. Shell Programming and Scripting

ftp zip files corruption

Hi I have a zip file that I am ftping to another server. After I have ztped the file it is corrupt and cannot be opened by winzip. Can anyone throw any light on to why this would happen. I have no problems with sending the individual files, but when zipped into one file it becomes... (3 Replies)
Discussion started by: colesga
3 Replies

10. Shell Programming and Scripting

check if exists a .ZIP file and unzip it using ftp

hi this is my question i have my script what have to verify the existence of a .ZIP file in a extern server (using ftp). if there are .ZIP files, the idea is what the script "unzip" them in the specified folder. THE PROBLEM IS what the script doen´t unzip the .ZIP files, and besides, delete... (1 Reply)
Discussion started by: DebianJ
1 Replies
Login or Register to Ask a Question