Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ftp append mode script for Korn shell

Status
Not open for further replies.

new2unix

Programmer
Feb 5, 2001
143
US
Hi,

What would be the right syntax for an ftp to transfer files in the append mode in a script?

Thanks

Mike
 
ftp host
<usercode>
<password>
append <source> <destination>

Bill.
 
#!/bin/ksh
ftp -n <<cheat
user USER PASSWORD
apppend local remote
quit
cheat
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top