FTP files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting FTP files
# 1  
Old 07-08-2010
FTP files

Hi,

I have to transfer the files from one unix box to abnother. Below is the function i have written -

Code:
file_ftp ()
{
  #for inFile in `cat /home/rgupta/list-test.txt`
  #do
    inFile=abc.arch.gz
     FILETYPE=$inFile
        ftp -in $GATEWAY1 <<!
        user $USERID1 $PASSWD1
        lcd $PICKUPDIR
        cd $DROPDIR1
        bin
        mput $FILETYPE
        bye
!
 #done
} >> $LOGDIR/$LOGFILE

Above code is tranfering the file abc.arch.gz from PICKUPDIR to DROPDIR1.
But when i uncomment the blue colored lines and remove green colored statement then this doen not work.

I actually need to transfer all the files which are in list-test.txt list.

Please provide me the correct way to do this.

Thanks

Moderator's Comments:
Mod Comment Please use code tags for listings, ty

Last edited by pludi; 07-08-2010 at 06:16 AM..
# 2  
Old 07-08-2010
Try:

Code:
file_ftp ()
{
while read inFile
do
    #inFile=abc.arch.gz
    FILETYPE=$inFile
    ftp -in $GATEWAY1 <<!
    user $USERID1 $PASSWD1
    lcd $PICKUPDIR
    cd $DROPDIR1
    bin
    mput $FILETYPE
    bye
!
done < /home/rgupta/list-test.txt
}



---------- Post updated at 03:23 PM ---------- Previous update was at 03:14 PM ----------

Also make sure the file "/home/rgupta/list-test.txt" has not any ctrl and/or dos based chars.
This User Gave Thanks to clx For This Post:
# 3  
Old 07-08-2010
Further to anchal_khare.

The file "list-test.txt" should contain individual file names, none of which contain space characters or asterisk characters. Though "mput" will work for individual files, "put" is preferred. If the files are text files you will need the "ascii" option.
This User Gave Thanks to methyl For This Post:
# 4  
Old 07-08-2010
The list contains follwing files -

TA710005PD12270900490013070608.arch.gz
TA710005PD12270900490001070608.arch.gz
TA710005PD12270900490005070608.arch.gz
TA710005PD12270900490002070608.arch.gz

As sson as i execute teh script, I get follwoing messages/errors -

+ file_ftp
Local directory now /one/data/cdrlz/ct/arch/vodafone
: No such file or directory608.arch.gz
Local directory now /one/data/cdrlz/ct/arch/vodafone
: No such file or directory608.arch.gz
Local directory now /one/data/cdrlz/ct/arch/vodafone
: No such file or directory608.arch.gz
Local directory now /one/data/cdrlz/ct/arch/vodafone
: No such file or directory608.arch.gz
+ getopts ovtic OPTION
+ exit 0


Files are there in /one/data/cdrlz/ct/arch/vodafone. I dont know why files names are displayed like directory608.arch.gz.

Please let me know, where can be the problem?

---------- Post updated at 05:48 PM ---------- Previous update was at 05:29 PM ----------

Sorry..

This worked properly.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to see the status of all the ftp put & get files logs and curent ftp transfer status ?

How to see the status of all the ftp put & get files logs and curent ftp transfer status if any active ftp running in the background ? (2 Replies)
Discussion started by: i4ismail
2 Replies

2. Shell Programming and Scripting

Need help creating a script to FTP files to a server and then delete the files that were transfered.

I am trying to FTP files to a Windows server through my Linux machine. I have setup the file transfer with no problems but am having problem deleting those files from the Linux box. My current non-working solution is below. Any ideas, anyone?? :wall: Please be gentle, I'm fairly new to this... (4 Replies)
Discussion started by: jmalfhs
4 Replies

3. Shell Programming and Scripting

ftp files ...

Hi , I am new to shell scripting I was planning to write a script that will FTP files to destination folder..so which approach should I follow the ftp one or sftp one or scp one and which one one of them is most secure and fastest one..? (1 Reply)
Discussion started by: rahul125
1 Replies

4. Shell Programming and Scripting

getting only new files from FTP

iam using mget *.* too get all files in FTP iam checking the FTP Server every day for the new files(there are 100s every day) and iam doing *.* by doing so iam getting the old files also(it overwriting the old files) ...... how can i get only the new files...... from FTP (4 Replies)
Discussion started by: nani1984
4 Replies

5. Shell Programming and Scripting

FTP the files

Hi, Currenty I am transfering the files which are in list-test.txt. Below is the code for same - file_ftp () { while read inFile do #inFile=abc.arch.gz FILETYPE=$inFile ftp -in $GATEWAY1 <<! user $USERID1 $PASSWD1 lcd $PICKUPDIR cd $DROPDIR1 bin ... (1 Reply)
Discussion started by: ravigupta2u
1 Replies

6. Shell Programming and Scripting

ftp files

Dear ALL i had a file name called test.log witch contains 300 archives log files. so how can i give the test.log as a input to the ftp script please let me know Thank you (9 Replies)
Discussion started by: paddyforum
9 Replies

7. Filesystems, Disks and Memory

Not able to FTP the files to a FTP server

Hi , We are facing a weird problem in our project. we need to send some xml & audio files to a remote FTP server from a Linux box, we are doing this in Perl script using Net::FTP->. Issue here is.. when FTPed the files using Perl scripts, only empty files ( 0 byte) are getting created on the... (2 Replies)
Discussion started by: kishorepotta
2 Replies

8. Shell Programming and Scripting

Ftp too many files.

Hi folks, Small but interesting issue. I have 15 files in a directory with the same name as discribd below. refresh_20090407045220.dat refresh_20090407051445.dat refresh_20090407052138.dat refresh_20090407064528.dat refresh_20090407064654.dat refresh_20090407065012.dat... (9 Replies)
Discussion started by: Haque123
9 Replies

9. Shell Programming and Scripting

FTP of files

Hi all, I had written the following script to transfer the files thru FTP. But it throws me some error after I run the program. I guess its throwing error because of the path. Do help me. Thanks cd /home/psv find . -name '*.ksh' -print > /home/psv/ftpbatch/onefile cd... (2 Replies)
Discussion started by: mahalakshmi
2 Replies

10. UNIX for Dummies Questions & Answers

FTP files

Hi, I am new to unix and I want to ftp files from unix to windows nt machine. My requirement is like i want to ftp files which are having system date (20050927) in between the filename. Once i get into ftp mode, I am not able to execute the unix command the get the system date and to change it... (1 Reply)
Discussion started by: gopskrish
1 Replies
Login or Register to Ask a Question