good old shell ftp...how!


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting good old shell ftp...how!
# 1  
Old 03-25-2009
Question good old shell ftp...how!

hi:

I am trying to move files from server to server with ftp.

I want the command to read a folder and upload all subdirs and files.

what is the command to do this?

is there something cooler than ftp? if so. how to use it?

thanks again.
# 2  
Old 03-25-2009
It sounds like you might want to look into rsync instead.

For command-line FTP, I prefer ncftp very much. It has a recursive mget, which your vanilla ftp may not.
# 3  
Old 03-26-2009
Assuming they are all unix servers running TCP/IP:
man rcp
There are other methods too depending on what Operating System(s) you are using and how far you want to go with setting up network communcations.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

any good book for shell programming and scripting??

as title suggest i am looking for good book to start learning shell programming.please help me with this. (5 Replies)
Discussion started by: pvk21
5 Replies

2. Solaris

A good ftp client

Can anyone please suggest a agood ftp client(GUI) which would support sftp ...on solaris. I badly need it. I keep doing the transfers frequently, and some of them are binary and I am not sure how I change the mode to binary. To avoid this and other hassles, it would help if i have a GUI client. ... (6 Replies)
Discussion started by: Naanu
6 Replies

3. Shell Programming and Scripting

Good site for Shell Programming

Hi unixers, :) I found some Good sites for learning Shell Programming. I Hope they will be useful to all of You. http://steve-parker.org/forum/ http://www.e-learningcenter.com/freecourses.htm similarly ,if u find any very good sites for shell programming pls post them, so that they will... (6 Replies)
Discussion started by: ravi raj kumar
6 Replies

4. UNIX for Dummies Questions & Answers

any good book for Shell Scripting ?

Hi , I am aware of basics of UNIX like general commands for files & directories. However now I have to move on to shell programming . Please suggest any good book for beginners for shell programming basics & advanced which might have some practice questions also. Thanks, Ankur (4 Replies)
Discussion started by: ankurvohra
4 Replies

5. Shell Programming and Scripting

Help for good books in Shell Scripting

Hi, I am knew to Shell Scripting. Can someone please tell me some good books for Shell Scripting which explains in a very simple language and covers all the topics nicely. Thanks, Shubh. (3 Replies)
Discussion started by: shubhranshu
3 Replies

6. UNIX for Dummies Questions & Answers

Good Book For Unix And Shell Scripting

Hello people.I'm new to the forum and would like to seek your opinion in purchaing a copy of a good Unix and Shell scripting book. I have good knowledge of basic unix concepts and now i would like to delve into more details. Your suugestion much appreciated. Thx (1 Reply)
Discussion started by: aeontoam82
1 Replies

7. Shell Programming and Scripting

needed very good link for Shell script

I am new to shell script.I need a link which explains basic concepts for shell scrpting (1 Reply)
Discussion started by: rajareddy_24
1 Replies

8. Shell Programming and Scripting

Good books on Shell Scripting

All, I am new to shell scripting. Can you guys suggest me some good books/online tutorials for shell scripting(KSH/BASH)? Thanks in advance. Janardhan. (1 Reply)
Discussion started by: raok1997
1 Replies

9. Shell Programming and Scripting

verify ftp status is "good"

Hello, From reading prior "threads", my script looks like this: #!/bin/ksh -x ftpresults=`ftp -nv $ftphost1 << EOB user $ftpuser $ftppwd put $ftp_file $ft put $ftp_file $ft1 bye EOB` ftp_ctr=`echo $ftpresults | grep "226 Transfer complete" | wc -l`... (4 Replies)
Discussion started by: blt123
4 Replies

10. Shell Programming and Scripting

good book for unix shell programming

hi, i am ajay. I need a good book for shell programming. a book which covers from fundamental to advance shell programming. (3 Replies)
Discussion started by: ajaygodbole
3 Replies
Login or Register to Ask a Question