home *** CD-ROM | disk | FTP | other *** search
/ The Best Internet Programs / BESTINTERNET.bin / internet / lrn_inet / li_ftp.prn < prev    next >
Encoding:
Text File  |  1994-07-28  |  3.2 KB  |  60 lines

  1.                                     FTP
  2.  
  3.           FTP stands for "file transfer protocol."  It is the part of
  4.           TCP/IP that allows for transfer of files from one computer to
  5.           another.  There are enormous archives around the world from
  6.           which you can download files.  Binary (or image) type files
  7.           are such things as computer programs, graphics, sound files,
  8.           compressed files, etc.  Ascii files are text files.  Specially
  9.           useful text files you will find on the Internet are called
  10.           FAQ files (frequently asked questions).  Sometimes they are
  11.           called RFC files (request for comment).
  12.  
  13.           Start the ftp program by entering: ftp [host], where [host] is
  14.           the address of the computer to which you wish to connect.  
  15.           Anonymous ftp allows you to log in to a remote ftp server and
  16.           download files without actually having an account on that
  17.           computer.  When practicing anonymous ftp, use your full email
  18.           address for the requested password.  Be sure to observe any
  19.           rules or restrictions specified by the remote host.
  20.  
  21.  
  22.                             Important FTP Commands
  23.           ------------------------------------------------------------------
  24.             Command          What It Does
  25.           ------------------------------------------------------------------
  26.             bye (or quit)    close connections with remote host         
  27.             ?                display ftp commands
  28.             ! [command]      shell to local unix and execute command
  29.           ------------------------------------------------------------------
  30.             open             from ftp> connect to a host
  31.             close            exit from host, return to ftp
  32.           ------------------------------------------------------------------
  33.             cd [dir name]    change directory
  34.             cd ..            change to directory one level up   
  35.             dir              display files in directory
  36.             pwd              print working directory
  37.           ------------------------------------------------------------------
  38.             get  [filename]  download one file
  39.             mget [pattern]   download multiple files (use * or ? as in unix)
  40.           ------------------------------------------------------------------
  41.             ascii            set file type to ASCII (use for text files)
  42.             binary (image,i) set file type to IMAGE (use for non-text files)
  43.             prompt           yes/no confirmation for mget command
  44.             status           show current ftp settings
  45.           ------------------------------------------------------------------
  46.  
  47.           In very large directories there is often a file called 00-Index, or
  48.           some name with the word index in it.  It will contain a listing of
  49.           the files (often including a description) in that directory.  It is
  50.           a good idea to get this file and browse/search it rather than trying
  51.           to browse a huge directory on line.  Another way to capture the dir-
  52.           ectory locally is !dir [directory name] [local file name].
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.