Ref: 10490001
Title: Batch FTP File Transfers Using PCS/TCP
Date: 10/2/89

Copyright 3Com Corporation, 1991.  All rights reserved.

Following is a procedure for transferring two or more files via FTP
using PCS/TCP.  This procedure will not work with PCS/TCP version 10,000,
because version 10,000 does not accept standard DOS input, only input from
the keyboard.

1.  Create a DOS batch file called "getfiles.bat".  This batch file
will contain one line, "ftp myhost < files.dat".  Replace
"myhost" with the name or IP address of the host you want to
connect to.

2.  Create a data file called "files.dat" containing all the
information needed to log in to the host.  An easy way to do this
is to connect, then write down everything you manually typed to
transfer a file.  This would include your login, password,
options, file names and logout sequence.  An example follows:

my login
my passwd
ascii -or- binary
get file1
get file2
get file3
...etc...
quit
logout

