FTP Script Problem


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting FTP Script Problem
# 1  
Old 11-25-2005
FTP Script Problem

Hi,

Firstly, I would like to admit that I am a scripting newb. Smilie

Now, to my question:


I am writing a script that FTPs a bunch of logs from one server to another, it will be scheduled in Cron to run every 20 minutes.

Currently, the file transfer part of the script is fine. However, when the logs are transferred from server A to B, I want to delete the copies on server A, but I am unable to get the return code.

Here is my script so far:


Code:
#	
#	22-11-2005
#	John
#	T&A Website
#
#	Automates the FTP transfer of logs from A to B.
#

cd /x/logs/TAWEB

ftp -nv star-d << !
quote USER test
quote PASS testpass
cd /x/logs/TAWEB
mput *

if [[ $? ]]; then
	echo FTP_OK!
	rm DAILY*
	rm STATS*
else
	echo FTP_FAIL!	
fi

quit
!

However, I am getting the error:

Code:
....
?Invalid command
....

multiple times (once for each log that exists).

As far as I knew, $? is the variable where the last return code was stored, but it doesn't seem to be working in this case.


I'm not sure how to check if the transfer was a success or not.

Thanks in advance for any help.


EDIT: Forgot to mention I am using KSH shell.
# 2  
Old 11-25-2005
The problem is that you are trying to issue ksh commands in an ftp session.
Why not take a look at this FAQ: Automate FTP / Scripting FTP Transfers
# 3  
Old 11-25-2005
Thanks for your help.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

problem while using FTP in shell script

Hi all, I am having problem while using FTP in shell script.I am downloading a file from other machine.Part of file name is known to me(in red) 20100114123814.portin.virginsubs.extract What i am doing is trying to get the file using get command with wild card "*" (see below) but it fails... (1 Reply)
Discussion started by: vinoo128
1 Replies

2. Shell Programming and Scripting

problem in exit status of the command in a shell script-FTP

Hi All, I have developed below script for FTP a file from unix machine to another machine. ftpToABC () { USER='xyz' PASSWD='abc' echo "open xx.yy.zbx.aaa user $USER $PASSWD binary echo "put $1 abc.txt" >> /home/tmp/ftp.$$ echo "quit" >> /home/tmp/ftp.$$ ftp -ivn <... (3 Replies)
Discussion started by: RSC1985
3 Replies

3. Shell Programming and Scripting

Automated FTP script using .netrc to multiple FTP servers

Hi all, I'm using the following script to automated ftp files to 1 ftp servers host=192.168.0.1 /usr/bin/ftp -vi >> $bkplog 2>&1 <<ftp open $host bin cd ${directory} put $files quit ftp and the .netrc file contain machine 192.168.0.1 login abc... (4 Replies)
Discussion started by: varu0612
4 Replies

4. Shell Programming and Scripting

passing parameter to ftp script from output of another ftp

Hi, I have a ftp script which first gets all the file names and echo's the latest file. I'm using another ftp command sets to get the file name given by first ftp. The problem is the parameter is not accepted by second ftp. The error message i'm getting is > Rename Temp File calloc:ICMP... (5 Replies)
Discussion started by: ammu
5 Replies

5. Solaris

FTP Script Problem

Hi Everybody, I am working on FTP Script (i,e Parser.sh,Upload.sh) and the contents of the same are mentioned below .., #!/bin/bash if ; then echo "Usage ./Parser.sh IP USERNAME PASSWORD SOURCE FILENAME DESTINATION where IP ------------- IP address of remote... (0 Replies)
Discussion started by: prasanth_babu
0 Replies

6. Shell Programming and Scripting

Problem with here doc operator in FTP script

Hello folks, I am facing a problem with the following korn shell script snippet: ftp -n -i -v <<EOF print -p open $CURR_HOST print -p user $USER $PASSWD print -p binary print -p cd /mydir/subdir/datadir print -p get $FILENAME print -p bye EOF exit It gives me the following... (3 Replies)
Discussion started by: Rajat
3 Replies

7. Shell Programming and Scripting

Having a problem with a FTP Script using perl

Hello All, I have a problem that has me stumped. I am using perl to do some ftp'ing of files. I have the script in place on another environment that is functioning flawlessly. But after tweaking it to the new environment I can't get it to function. I have a search string that searches for... (6 Replies)
Discussion started by: scottzx7rr
6 Replies

8. Shell Programming and Scripting

FTP script and problem

We have a script where we're trying to ftp to an outside ftp server, but it keeps failing with the error: 421 Service not available, remote server has closed connection if we ftp <server> and manually enter the username and password from the Unix box it's just fine. But when we try to... (1 Reply)
Discussion started by: lawadm1
1 Replies

9. Shell Programming and Scripting

FTP on Reliant UNIX - script problem

Hello... I have script that works perfect on solaris but on Reliant UNIX sometimes it does not work ...I send files to my Xp(from Reliant UNIX) but if I try to send it to my solaris machine file can not be send... script is: #!/bin/ksh localFile=$1 remoteFile=$2 ... (0 Replies)
Discussion started by: amon
0 Replies

10. UNIX for Advanced & Expert Users

problem with ftp script...please help

Hi, I'm writing an ftp script that is trying to connect to a remote NT box. Here is my script: ftp -i ipaddress user username password ascii cd db_Backup lcd /home/dB_backups put *.sql bye When I run this script I get the following error: 500 'AUTH GSSAPI': command not... (2 Replies)
Discussion started by: vancouver_joe
2 Replies
Login or Register to Ask a Question