========================================================================
       CONSOLE APPLICATION : ftpget

	WRITTEN/COMPILED WITH:  MSVC 6.0
========================================================================


Written by:  Eric Jorgensen (www.ericjorgensen.com)

This utility will copy one or many files from multiple ftp locations
into the local folder.  Files are renamed so that identicle filenames
can be distinguished by server.  This is useful for pulling
log files from multiple servers to a single location for processing
with tools such as Analog.

USAGE:  ftpget (server) (filename) [(options)]

  This will copy the specified file(s) to the local directory.  By default,
  if the file already exists in the local directory and it is the same size,
  it will not be copied.

  Options:
     USERNAME (name)         ftp username [default: anonymous]
     PASSWORD (password)     ftp password [default: ftpget_program]
     PORT (#)                port number to use on remote server [default: 21]
     OVERWRITE               force overwrite local files
     NODECORATE              don't append server name to local file name
     VERBOSE                 tell me what's going on

example:

	ftpget www.myserver.com private\logs\*.log username admin password .21baffoons

