May 22, 2002 #1 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
Hi, What would be the right syntax for an ftp to transfer files in the append mode in a script? Thanks Mike
May 22, 2002 #2 bjverzal MIS Apr 26, 2001 964 US ftp host <usercode> <password> append <source> <destination> Bill. Upvote 0 Downvote
May 22, 2002 #3 gheist Technical User Apr 5, 2002 467 LV #!/bin/ksh ftp -n <<cheat user USER PASSWORD apppend local remote quit cheat Upvote 0 Downvote