Need a Shell Script for FTP


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need a Shell Script for FTP
# 8  
Old 11-17-2014
prints "couldn't connect" into file descriptor two, i.e. standard error, the traditional place for human readable error messages.

When you run something in a terminal it traditionally gets two independent connections to the terminal, stdout and stderr. stdout is meant for data, so that if you do command | anothercommand | etc they won't be piping their own error messages into each other, but dumping them direct to the screen for you to read.
This User Gave Thanks to Corona688 For This Post:
# 9  
Old 11-17-2014
Need a Shell Script for FTP

Hi Corona,

Now i am getting below

Code:
220 Microsoft FTP Service
---> SYST
215 Windows_NT
Remote system type is Windows_NT.
---> USER ftpuser
331 Password required for ftpuser.
---> PASS 12345678
230 User logged in.
Hash mark printing on (1024 bytes/hash mark).
Interactive mode off.
---> CWD /tmp/
550 The system cannot find the file specified.
---> TYPE I
200 Type set to I.
---> PASV
227 Entering Passive Mode (192,168,112,1,220,60).
---> RETR XXXX.*
550 The filename, directory name, or volume label syntax is incorrect.
---> QUIT
221 Goodbye.


Last edited by Corona688; 11-17-2014 at 12:42 PM.. Reason: getting new error
# 10  
Old 11-17-2014
Remove all indentation before any 'EOF's. Those have to be at the beginning of the line.

Code:
command <<EOF
    something
    something
    EOF

Code:
command <<EOF
    something
    something
EOF

# 11  
Old 11-17-2014
Please do not edit your posts out when I'm answering them.

Please tell me the values of your variables. (Not the username and password, obviously.)

Where did you get the FTP script you started with?
# 12  
Old 11-17-2014
Need a Shell Script for FTP

Hi,

Noted with thanks
Below is the values of the some variables
Code:
FILE='XXXX.*' [get multiple file]
SrcDir='D:\TEST\' [Windows PC]
DstDi='/tmp/' [Linux Pc]

Thanks

Last edited by vbe; 11-17-2014 at 01:06 PM..
# 13  
Old 11-17-2014
I didn't realize you were getting multiple files... Your description was that of retrieving a single file.

Where are you keeping the original files on the local server?
# 14  
Old 11-17-2014
Need a Shell Script for FTP

Hi,

Yes local server[linux]. everyday file is generated like XXXX.yymmdd format but the directory is same.

Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

FTP in Shell Script

Dear All, I am using FTP in a script. But when i exit from the FTP session, the commands written after EOF don't get executed. i.e. ftp <<EOF quote $login quote $password cd /tmp mget *somefile* bye EOF echo $some_variable #This last echo command or whatever piece of commands i... (10 Replies)
Discussion started by: Salman786
10 Replies

2. Shell Programming and Scripting

Help With FTP Shell Script

So i Administer multiple ftp servers that run on dynamic IP's as well as user and password settings are changed by other people constantly. What i need to do is ensure that an FTP is server is up on the IP i check. As well as the login credentials work. Here is a simple script i wrote. However... (2 Replies)
Discussion started by: Noledge
2 Replies

3. Shell Programming and Scripting

FTP within a SHELL script

I am running the following on linux (on a mac): filename="/Users/thisfilename.txt" hostname="ftp.mysite.com" username="myusername" password="mypassword" echo '=======FTP========' ftp -un $hostname <<EOF quote USER $username quote PASS $password binary put $filename quit EOF I... (4 Replies)
Discussion started by: globalnerds
4 Replies

4. Shell Programming and Scripting

Help with Shell script for FTP

#!/usr/bin/ksh export filename=/grid/PowerCenter/inbound/AT/filelist.txt export SOURCE_DIR=/grid/PowerCenter/inbound/AT export ICOMS_FTP_TGT_DIR1=/dw/input/ATU/ICOM_SERV1 export ICOMS_FTP_TGT_DIR2=/dw/input/AT/ICOM_SERV2 export FILE_MASK="ATRPU_RP_ATU" echo "start" ftp_data_file() { ... (15 Replies)
Discussion started by: vsmeruga
15 Replies

5. UNIX for Advanced & Expert Users

FTP in shell script

HI ALL i am writing a shell script in which i have to use FTP command like. FTP <ip address> cd xyz mget* bye but i am not able to perform any command from shell script. once the control goes to FTP, i again have to type all the things. i just want my shell script to take care of the... (8 Replies)
Discussion started by: infyanurag
8 Replies

6. Shell Programming and Scripting

ftp with shell script

Can I ftp to put file with shell script(as bath file) ? Plz give the simple code to do that. My script look like that #!/bin/sh echo "Start ftp" ftp temphost <<EOF put file quit EOF # end This code ignore username & password but I need to input. How to input username &... (8 Replies)
Discussion started by: aungomarin
8 Replies

7. Shell Programming and Scripting

FTP via shell script

Hi, I need to upload a file via ftp. I have given : ftp -n $HOST <<END quote user $USER quote pass $PASSWD prompt off put bus.txt quit END Its throwing a syntax error at "<<" symbol. What should be done for this ?? (2 Replies)
Discussion started by: risshanth
2 Replies

8. UNIX for Dummies Questions & Answers

Shell script for ftp

Hi ,, I am wrting a shell script to ftp a file from remote server but its giving some problem to me.can you help me in debugging this. #!/usr/bin/ksh HOST="some ip" user="user_name" passwd="password" ftp -n $HOST >>END_SCRIPT USER $user $passwd binary prompt get... (3 Replies)
Discussion started by: namishtiwari
3 Replies

9. Shell Programming and Scripting

ftp in shell script

Hi, I have to ftp to a remote machine. i have got the Ip, username and password and the file path.. I need to get the file name with out user intervention in my script.. is there any way to do this.. please help esham (2 Replies)
Discussion started by: esham
2 Replies

10. Shell Programming and Scripting

using ftp in a shell script.

I am trying to ftp some files from a certain directory, but i got an invalid command. does anybody know why i got this error? ftp -v -i -n <<SCRIPT open servername user username password cd /server/logs for file in MCWAS* do put ${file} /home/test/${file} done bye SCRIPT (2 Replies)
Discussion started by: caesarkim
2 Replies
Login or Register to Ask a Question