Ftping through unix script


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Ftping through unix script
# 1  
Old 11-29-2006
Ftping through unix script

Hi all,

I am trying to write a script to connect to remote host and ftp some files there.
The problem i am facing is,I dont know how to specify username and password for remote host through scripting.
and even if i am able to connect to remote host,then how should i execute
commands like mput etc through unix scripting.

Please do suggest me, how to write the code for the same.

Thanks!
# 2  
Old 11-29-2006
Post Here to Contact Site Administrators and Moderators is not an appropriate forum to post this question in, please post in an appropriate technical forum.

Thread moved.
# 3  
Old 11-30-2006
#Try the following script

###############################
HOST='10.174.47.132'
USER='dbg\\azaveri-a'
PASSWD='Pass@word2'
cd /usr/Fax

a=`echo $p\_1\.txt`
b=`echo $q\_1\.txt`
ftp -n $HOST <<END_SCRIPT
quote USER $USER
quote PASS $PASSWD
cd post
bi
lcd /usr/Fax/
prompt off

put $a $b
quit
END_SCRIPT
exit 0
#####################################
# 4  
Old 11-30-2006
Thanks Girish!!
I am able to connect to remote host and also able to ftp the files there.
The problem that now i am facing is i want to take the count of files ftped.

I have taken the count on local host, say in var1 before ftping.
Now i want to take the count on remote host ,say in var2 and want to compare both of them to ensure successful ftp of all the files.

Still i am not able to determine the scope of these variables and also how to get value in var2.

Looking forward for help,
Thanks!
# 5  
Old 11-30-2006
This might help you.
https://www.unix.com/showpost.php?p=3...4&postcount=27

I still have a few things to add, but it does work in its current form.
You just need to make sure you have the .sent and .receiving directories on both servers.
Tornado
# 6  
Old 11-30-2006
Hi ...


Please try the below script ..

#!/bin/sh
cd /home/user
ftp -n 111.222.333.444 <<EOT
quote user unixuser
quote pass unixuserpass
binary
cd /TEST
put test.txt
quit
EOT



As far unix is concerned you can do ftp to a windows machines ...In the above script if you find any prob please come up with ...

Thanks,
Arun...
# 7  
Old 12-01-2006
FTP script

This might help

ftp -nv $HOST <<EOF1
user $FTP_ID $FTP_USR_PASSWD

lcd $target_dir

cd $source_int_dir
$TRANSFER_METHOD
get $file_name

quit



EOF1


here store your user id ,password and file name in variables which you will ftping to the remote server denoted by $HOST
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

FTPing files from unix server to windows server

Hi, Below is the script which ftps the file from unix server and putting in a different directory(but on unix server) How can i ftp the files from unix server and to place in a secure location on windows server? what changes needs to be done to the below script? How can this be... (1 Reply)
Discussion started by: venkatesht
1 Replies

2. UNIX for Dummies Questions & Answers

ftping a Zip file

i want to sftp a .zip file.when i am doing get abc.zip thenabc.zip is getting copied to my home folder. but on clicking abc.zip on my home folder to open it i am getting error message as "Unable to unarchive abc.zip into <homefolder> name" How to sftp the Zip file Thanks (1 Reply)
Discussion started by: bmrout007
1 Replies

3. UNIX for Dummies Questions & Answers

How to remove junk (^Ò) character while FTPing

Hi All, I have been trying to FTP some data files from Windows directory to a UNIX server. The txt file in the windows contails the following data: "111~XYZ~1~Contact person’s phone number~COMMENTS~~~~" but the same line is appearing as "111~XYZ~1~Contact person^Òs phone number~COMMENTS~~~~"... (8 Replies)
Discussion started by: vkumbhakarna
8 Replies

4. UNIX for Dummies Questions & Answers

Script for FTPing files to mainframe GDG

Hi, Request Unix gurus to kindly share a script which FTPs multiple files from Unix to a Mainframe GDG. The script should check for oldest file named as 'abc*.txt' in a directory '/dir/child'. FTP that file to MF, then remove the file from unix and then look for the next oldest file to be... (1 Reply)
Discussion started by: dsrookie
1 Replies

5. Shell Programming and Scripting

removing files after ftping

Hi All, I'm trying to write script to ftp some files and then need to remove these files from server. Is there any way to keep the condition that the file should be removed only after successfully transfered to the destinatino server? If in case, the file isn't been transferd, it should not be... (5 Replies)
Discussion started by: im_new
5 Replies

6. UNIX for Dummies Questions & Answers

ftping a file based in the size

Hi, I want to connect to a remote machine using FTP, check for the size of a file there. If it is 0 bytes, then there is no need to ftp else i have to ftp the file. Any help will be highly appreciated. (7 Replies)
Discussion started by: vikas.rao11
7 Replies

7. UNIX for Dummies Questions & Answers

FTPing from XP to Solaris

Hello. I'm new to Unix. I've got a SUN Ultra 10 running Solaris 5.7 and I'm trying to FTP to it from my XP PC. My PC has an IP address of 10.0.0.3 and a Subnet of 255.255.255.0. I'm connected to the Sun machine with a crossover cable. I type "ifconfig hme0 10.0.0.5" in a shell window (as... (3 Replies)
Discussion started by: dtferreira
3 Replies

8. Shell Programming and Scripting

FTPing from unix box to windows box.

Hi All, I need to know if it is possible ftping files from unix box to windows box . if yes , how ?. Is there any pre-requisits. Please tell me the steps, this is very urgent. Thnx Aru (8 Replies)
Discussion started by: aarora_98
8 Replies

9. Shell Programming and Scripting

Error in ftping script

Hi all , Can u please help me in this. I tried to just login server through the below script SERVER="Server_NAME" USER="i am user" PASSWD="mypassword" ftp -in $SERVER<<EOF user $USER $PASSWD mkdir Chanakya #To create directory with my name in $HOME ls > list put list bye... (5 Replies)
Discussion started by: Chanakya.m
5 Replies

10. UNIX for Advanced & Expert Users

FTPing over COM port ???

Hello. Can someone please help, or give me any advice. The company I work for has a unix machine and works over the com port rather than IP. We need to retrieve some files from it onto another unix machine and we are trying to get an ftp program to work, does anyone know any ftp programs that... (1 Reply)
Discussion started by: badge
1 Replies
Login or Register to Ask a Question