home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / PASSRC.ZIP / OT.DOC < prev    next >
Text File  |  1991-02-04  |  3KB  |  67 lines

  1.     Filename OT.DOC - Oaktree Documentation   Oct 18, 1988
  2.  
  3.     The program supplied by IBM and compatible makers named
  4.     TREE.COM is a nearly unuseable program since it really
  5.     doesn't tell you much about your directories. Because of
  6.     that deficiency, OT (OakTree, a more substantial tree)
  7.     was written.  It will give you more information about
  8.     your disk than you will ever need, but it is somewhat
  9.     interesting to see just what is on your disk.
  10.  
  11.     OT3.PAS was written in TURBO Pascal 3.0 and was debugged
  12.     using PC-DOS 3.1, but should work on any DOS of 2.X or
  13.     greater.  OT4.PAS was rewritten in TURBO Pascal 4.0 and
  14.     uses many of the extensions added to versions 4.0 and 5.0.
  15.     Neither of these wil work with DOS 1.X since DOS 1.X does
  16.     not support directories.
  17.  
  18.     The generalized command format is;
  19.  
  20.     C>OT [drive:] [filename.ext] [/n] [/p] [/s]
  21.  
  22.        If no drive is specified, the default drive will be
  23.        listed.
  24.  
  25.        The tree, beginning at the current directory, will be
  26.        listed.  If you are in the root directory, you will get
  27.        a listing of the entire disk.
  28.  
  29.        The filename.ext can be supplied with wildcards (* and $)
  30.        to get a listing of certain types of files.
  31.  
  32.        /n - filenames will not be listed, only the directory
  33.             structure of the disk.
  34.  
  35.        /p - will cause a listing to be sent to the printer with
  36.             page numbers.
  37.  
  38.        /s - will result in some extra disk statistics being in-
  39.             cluded in the listing following the header line.
  40.  
  41.     Examples of useage;
  42.  
  43.     C>OT       The tree, starting at the current directory will
  44.                be displayed on the monitor.
  45.  
  46.     C>OT *.PAS  All files with extension PAS will be listed in
  47.                the current tree along with an indication of where
  48.                they are.
  49.  
  50.     C>OT WHERE.WHO  If this filename exists on the disk, it will
  51.                be listed along with what directory it is in.
  52.                This is useful for finding a lost file.
  53.  
  54.     C>OT /p /s  The current tree will be listed on the monitor,
  55.                and also printed out.  The disk statistics will be
  56.                included in both locations.
  57.  
  58.     C>OT /n    Lists only the directories in the current tree.
  59.  
  60.     C>OT A: /p  The information concerning disk drive A will be
  61.                 listed and printed.
  62.  
  63.     C>OT /p /s  If started from the root directory, this will result
  64.                in the maximum amount of information.  The listing is
  65.                very useful in case of a disk crash because it will
  66.                aid you in restoring the disk to its precrash state.
  67.