home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 6 / FreshFish_September1994.bin / bbs / comm / ftpcdrom-2.11.lha / FTPcdrom / user.doc < prev    next >
Text File  |  1994-06-26  |  3KB  |  67 lines

  1.                   FTP Simulator Door Version 1.0
  2.  
  3.   Introduction:
  4.  
  5.      With the advent of CD-ROM drives, the Citadel BBS needed a method
  6.      to access multiple directories and allow a user to transfer files
  7.      from the CD-ROM to their system.  This program allows a user to
  8.      change directory and yet is safe from the hacker.
  9.  
  10.   User Operation:
  11.  
  12.      The user has the following commands.
  13.  
  14.     CD   <directory>   Move to a sub-directory, directory may contain
  15.                        wildcard characters.
  16.     UP                 Return to parent directory.
  17.     DOWN <directory>   Move down the directory tree.
  18.     LS   <name>        Long directory listing, name may contain
  19.                        the wildcard characters.
  20.     LIST <name>        Same as LS.
  21.     DIR  <name>        Short directory listing, name may contain
  22.                        the wildcard characters.
  23.     GET  <file...file> Get a file for downloading, the filenames may
  24.                        contain wildcard characters.
  25.     PWD                Print Working Directory.
  26.     HELP               This information!
  27.     VIEW <name>        view a text file(same as type, or more)
  28.                        Name may contain wildcard characters.
  29.     TYPE <name>        type a text file(same as view).
  30.     MORE <name>        display a text file(same as view).
  31.     LOG                Exit this door.
  32.     BYE                Exit this door.
  33.     EXIT               Exit this door.
  34.     QUIT               Exit this door.
  35.     ?                  This Help information.
  36.     CASE               Toggle the case sensitivity of names.
  37.     C-ON               Turn on the case sensitivity.
  38.     COFF               Turn off the case sensitivity.
  39.     STAT               Display the current status.
  40.  
  41.  When you refer to a file or directory, you will only be able to access
  42.  what you see in the current directory.  This means that you cannot specify
  43.  
  44.    CD Aminet/Comm/BBS
  45.  
  46.  You must do that with 3 commands:
  47.  
  48.    CD Aminet
  49.    CD Comm
  50.    Cd BBS
  51.  
  52.  You cannot specify path info(this is to protect the BBS from hackers).
  53.  
  54.  directory names or filenames can contain limited wildcarding.  This door
  55.  supports the use of "?" to match any character in a name.  The "*" matches
  56.  the remaining part of the string.  When a compare is done, the "*" ends
  57.  it as a match.
  58.  
  59.  For example:
  60.  
  61.    "sa?d.lha"    matches "said.lha" or "saed.lha"
  62.    "sa?d.*"      matches "said.lha", "saed.lha", "said.zoo.pi" and
  63.                          "said.zoo".
  64.  
  65.  Note:  any characters after the "*" are ignored.  You cannot match on
  66.  "sa*d.*", that would be the same as "sa*".
  67.