home *** CD-ROM | disk | FTP | other *** search
/ Power Utilities / Power Utilities.iso / ek / dor44 / dor.doc < prev    next >
Encoding:
Text File  |  1992-08-18  |  27.0 KB  |  529 lines

  1.                                 
  2.                                 
  3.                                        0
  4.  
  5.  
  6.  
  7.  
  8. ------------------------------------------------------------------------------
  9. |                                   DOR.EXE                                  |
  10. |                         COPYRIGHT (C) 1990 Tim Ward                        |
  11. |                                                                            |
  12. ------------------------------------------------------------------------------
  13.                         
  14.                         
  15.                                     DOR.EXE                                    
  16.                              By Tim Ward, May 1990.                            
  17.                           Copyright (C) 1990 Tim Ward                          
  18.                                 V4.4, June 1992                                
  19.  
  20. DOR.EXE is  **NOT** Free software and is **NOT** Public Domain. DOR is provided
  21. AS IS ONLY. The author provides NO warranties, expressed or implied, and is NOT
  22. liable for any damage caused by the use or inability to use this program.
  23.  DOR.EXE may be distributed freely, as long as the distribution package includes
  24. all the text documentation files.  You may evaluate DOR for a 15-day period. 
  25. If you still use DOR after this, you are expected to send a registration fee.
  26.   Registration of DOR 4.4 entitles you to a copy of DOR 5.1R, which now has
  27. support for multiple drives and multiple drive searching based on drive type.
  28.           DOR.EXE is NOT public domain software. If you use it, please         
  29.       send a registration of $15 (individual) or $25 (organization) to me      
  30.                              Tim Ward, c/o The Enchanter's Lair
  31.                              131 Naples St.
  32.                              Corpus Christi
  33.                              TX 78404-1828
  34.  
  35.     Look out for other programs from Kawonk Experimental Software Projects,    
  36.                   such as the RUNCIBAL QUEST adventure games.                        
  37.                         
  38.   The DOR v4.4 package comes with the follwoing files.  You may *not* 
  39.   distribute DOR without these files.
  40.                DOR.EXE      - v4.4, the main program.  
  41.                DOR.DOC      - v4.4, this document file.
  42.                REGISDOR.TXT - A registration form to print and mail.
  43.                DORSUMRY.TXT - A summary of DOR commands.
  44.  
  45.  
  46.  
  47.                                       1
  48.  
  49.  
  50.  
  51.  
  52.                            FOR DOS 3.00 or greater
  53.  
  54.      Many people are often annoyed by the DIR command built-in to DOS. They
  55. say that it doesn't really tell them what they want to know, and users on
  56. color systems especially complain about that bland monochromatic text that
  57. DOS likes to throw at them.  DOR was an effort to correct some of these minor
  58. deficiencies.  Actually, DOR does far more than DIR, and can and does perform
  59. features found in DOS's CHKDSK command, in the SIZE command that some users
  60. may be familiar with, and also the LOCATE command.
  61.  
  62.      With DOR, you can list all files on your disk at once.  If you wanted to
  63. make a file containing a list of all files currently on your disk, you would
  64. simply enter a command like "DOR \*.*/E-D > MYFILES.LOG" DOR can also calculate
  65. how much space files REALLY take up on your disk, as with the SIZE program.
  66. It of course, like DOS's DIR, gives you a count of how many files, and the
  67. amount of free space left on the drive, as well as the total capacity of the
  68. disk.  You should note, that to retain similarity to DIR, the file count
  69. includes any subdirectories, UNLESS YOU INCLUDE THE "/E" PARAMETER.
  70. Unlike DIR and other utilities, DOR automatically inserts COMMAS into
  71. number to make them more readable *.  It tries to find out the total memory
  72. of your system (under DOS, it will probably only find 640K maximum - an early
  73. silly oversight on the part of IBM (DOR does not search for extended or
  74. expanded RAM. If your system has more, it may not be reported )) and the amount
  75. free at the time (Naturally, it tries to underestimate if possible, and takes
  76. into account some of its own size.)
  77.  
  78.      To get help with the DOR syntax, simply enter "DOR /?" at the DOS prompt.
  79. "DOR /??" gives more help. "DOR /INFO" gives more information.
  80. DOR is probably of more use to you if you occasionally "loose" hidden and
  81. system files.  And yes,DOR can search through hidden and system subdirectories.
  82. It can display files in two columns, one column plus either file attributes,
  83. plain, or real space used on disk, or four columns like BASICA's FILES.
  84.      To terminate the listing of filenames, use either Ctrl-C or the Esc key.
  85. (DOR unfortunately still does not recognize the Ctrl-Break sequence.).
  86. NOTE: This might not always seem to work
  87.  
  88.      DOR V2.1 has a few changes over its previous incarnation, mainly in the
  89. way it treats hidden and system files, along with some code refinements to
  90. improve the way it handles subdirectory listings. Example - "DOR \D*" will
  91. list all directories starting with "D" that are one level down from the root
  92. directory.  It also handles user key input better. Also improved is the way
  93. DOR recovers from errors or user breaks, and the way it handles subdirectories.
  94. (see note on following page)
  95.  
  96.  
  97.  
  98.  
  99.                                       2
  100.  
  101.  
  102.  
  103.  
  104.  
  105. -----------------------------------------------------------------------------
  106.                       Directories and subdirectories.
  107.  
  108. DIR can usually find the subdirectory that you are referring to. DOR tries
  109. its hardest to see which subdirectory you want to look into.
  110. Say that your hard disk had a directory called "QUUX" and that you now were
  111. in directory "FOO", and you issued the command "DOR QUUX" .  DOR would
  112. first look to see if there is a file called "QUUX" in the directory FOO. It
  113. would then attempt to see if there was a subdirectory of FOO called QUUX.
  114. Failing all else, it would then proceed to see if there was a directory called
  115. FOO one level down from the root directory (i.e. "\FOO"). Sometimes DOR does
  116. show you a directory that you didn't want, this occurs only when you misspell
  117. the name of directory/file that you wanted to see, and THIS IS YOUR OWN FAULT !
  118. Otherwise, it should show you what you want. Experiment! You might not guess
  119. offhand that the easiest way to list all files on the disk was "DOR \/e+s+h"
  120. You don't actually need to put spaces in separating the parameters.
  121.  
  122.                                                            June 14, 1990.
  123. ---------------------------------------------------------->THaW<------------
  124.      Changes:
  125.   I have done a bit of minor rework to ensure more graceful exits from certain
  126. error conditions (whereas before you might have been left in a different
  127. directory from that which you started in), and cleared up a bit of confusion
  128. about disks that have no volume label.  Also have corrected a minor misfeature
  129. that was noticeable only to users with a mono system (such as myself !!)
  130. NOTE: Some people have asked about the /2 switch. In this listing mode, a "R"
  131. will be displayed next to the file size if it is READ-ONLY. Also, in this mode,
  132. files that have a "N" on their line DO NOT have the usual archive bit set.
  133. A "*" appearing on the file's line indicates that it is unusual, either in
  134. being READ-ONLY,HIDDEN,SYSTEM, or not having the ARC bit set. That's all that
  135. it means, really. Sorry if there was some confusion.
  136.                                                            June 21, 1990.
  137. ----------------------------------------------------------->THaW<---------------
  138.  
  139.  
  140.                                       3
  141.  
  142.  
  143. --------------------------------------------------------------------------------
  144.       Revision : V4.2.-1
  145.    It's been quite some time now, and I've still been using DOR all this time
  146. and just living with most of its problems, because I never got round to making
  147. any serious changes.  Well, this isn't really the release I'd intended, that
  148. will be soon, though.
  149.      Now:
  150.    Easier to break out of listing with Ctrl-C or [Esc] keys.
  151.    Subdirectory display handled better during subdirectory searches.
  152.    New /ND switch gives Decimal values of charcaters in file names
  153.        (easier to enter using the [Alt]-Numeric Keypad approach.
  154.    Colors changed- all colors are bright on All video cards, except for ones
  155.       which are by definition monochrome ie Herc, MDA. - This was changed
  156.       the first time I used it on a VGA mono system. Sorry guys, I didn't
  157.       realize how nasty it looked !
  158.    The "File size on target disk" feature works.  To specify you want file
  159.     sizes for a different drive use something like "DOR ]a:". Before, if the
  160.     colon was entered there would be an error.
  161.  * Format of various numbers loose the commas when the number gets too big.
  162.     This is for those larger hard drives, which I hadn't considered last time.
  163.      See also "/,"
  164.     "R" and "N" indicators don't show up for directories on short listing
  165.     "/B" option added.
  166.     Date and time functions functional.
  167.  
  168.   Still working on the sorted directory listings.  This may create problems,
  169.    I might have to ban using the /E switch for large drives (otherwise we
  170.    might have to try loading all the directory information for a 3GB drive if
  171.    someone tried the wrong command.)  I purposely have until now avoided the
  172.    sorted directory listing . Why ??  Well, if I was going to do that, I might
  173.    as well go ahead and make a whole file manager program, because all the
  174.    directory info would have to be loaded into memory before sorting, which
  175.    takes time and globs extra code (and expecially memory overhead.),
  176.    depending on  *how* you want the listing sorted.  I'm not sure, either,
  177.    if anyone could remember another N^X switches !!
  178.                        \
  179.                                                    March 4, 1992.
  180.  
  181.  --------------------------------------------------------->THaW<---------
  182.    This is where the document file continues, but a ^Z ended up in most.
  183.    Corrected problem with "/B" switch in 4.21. Added "/," switch in 4.25.
  184.    Corrected DOR.DOC file.
  185.                                                    March 23, 1992.
  186.  ------------------------------------------------------------------------
  187.    Realized why combining date switches wasn't working. Corrected number
  188.    alignment problem in footer (large disk sizes) Revamped way that
  189.    DOR processes command line. Expanded docs. Added size switches.
  190.    Changed /N switch to /NH for consistency. Recolored some text.
  191.    Added a few more switches, included COUNTRY support. Slashed messy code.
  192.  
  193.                                    DOR v4.3        March 28, 1992.
  194.  
  195.                                       4
  196.  
  197.   Fixed printing problem with /B switch, added support for environment switches
  198.   (and override!) . DOR v4.4.  Completed support for multiple drives DOR v5.1R
  199.                                                    July 23, 1992
  200.          
  201. ------------------------------------------------------------------------------
  202.   Here is a sample of the output from DOR, of my E: drive (which is a logical
  203.   drive assigned to Hard Disk #1)
  204.          
  205.                    Volume label of drive E: is : Rumpus WQQ?                 
  206.                                 Directory of E:\                             
  207. DOR43    DOC    22,625   3-25-92 10:03p   ARC          
  208. DOR43    EXE    68,854   3-28-92  5:40p   ARC       
  209. DOR43    ZIP    54,231   3-27-92 10:23a   ARC        
  210. D1       TXT     1,371   3-27-92  7:28p   ARC         
  211. D2       TXT     1,427   3-27-92  1:28p   ARC         
  212. D3       TXT         0   3-28-92  3:41a   ARC        
  213. 148,525 (163,909) Bytes         364,544 disk bytes total  640K total DOS memory
  214.        6  Files                 204,800 disk bytes free   541,380 bytes free
  215.          
  216.  
  217.     First, DOR gives the disk label, and the current directory, in this case,
  218. the root of E:
  219.   Each file is listed as follows:
  220.     File Name [+ extension]
  221.     File Size (with comma seperators for files less than 10MB big)
  222.        [for files larger than 10MB, if you want a comma-delimited size,
  223.         you might have to just use the /Z switch]
  224.     File Date (last two digits of year only displayed)   see note on COUNTRY
  225.     File Time (Twelve-hour format, with "a" for A.M., "p" for P.M.)
  226.                             see the /C switch for 12/24 hour clock
  227.     File attributes (in this case, only the ARC bits are set)
  228.  
  229.     The last two lines provide further information.
  230.     The first number if the total space required for the selected files, as
  231.   determined by adding their nominal filesizes (commas disappear when this
  232.   number is over 10MB) (also, when the "/," switch is specified)
  233.     The second number (in brackets) is the actual amount of space taken up on
  234.   the disk by the files (which is usually different from the first.)
  235.   (commas disappear when this number is over 100MB)
  236.     The third number is the drive capacity in bytes
  237.     The fourth number is the amount of RAM total reported by DOS
  238.        (this will not include extended or expanded memory)
  239.  
  240.     On the second line, DOR totals the number of files
  241.     [similar to DIR, directories are counted as files, unless subdirectory
  242.      searching is specified for DOR's command line, in which case they are
  243.      not.  DOR generally knows the difference between files and directories]
  244.  
  245.     Next is the amount of space free on the drive.
  246.     Lastly on this line, the amount of memory that DOS reports as being free
  247.     [this is probably not the same amount given by CHKDSK, because I just
  248.      estimated the worst case scenario for DOR's memory requirements, which
  249.      may vary between machines, and command lines]
  250.  
  251.  
  252.                                       5
  253.  
  254.  
  255. DOR [d:][\path\][filename.ext]   [options]  [ }t: ]
  256.     (External)    (C) 1990, 1992 Tim Ward                    V4.4
  257.  
  258. Shows all files and subdirectories on the specified drive, or on the default
  259. drive if no drive is specified. Includes hidden and system files.
  260. Filename is color-coded according to file attributes. Displays total size of
  261. selected files on disk. Includes total and free drive space & memory.
  262. If t: is included, file sizes calculated for specified other drive.
  263.  
  264.     -A = Do not include files with arc bit set   /A = list only files with arc
  265.     -D = Do not include subdirectories           /D = list only directories
  266.     -L = Don't show individual file data         /L = display file data only
  267.     -R = Do not include read-only files          /R = list only read-only files
  268.     +S = Include system files                    /S = list only system files
  269.     +H = Include hidden files                    /H = list only hidden files
  270.     /NH= Display hex dump of file name           /E = Search in subdirectories
  271.     /ND= Display decimal dump of file name       /P = Pause after every page
  272.     /Z = Display actual space used on disk by each file
  273.     /2 = Display two columns of file listings.
  274.     /4 = Ultrawide. Four columns, filenames only /INFO = More information
  275.     /? = Displays this syntax help listing       /?? = Help Page 2
  276.  
  277.                     (Page Two Help Screen...)
  278.  
  279. DOR [d:][\path\][filename.ext]   [options]  [ }t: ]
  280.     (External)    (C) 1990, 1992 Tim Ward                    V4.4
  281.  /+  All files dated today or after        /: Files with time after now
  282.  /-  All files dated before today          /; Files with time before now
  283.  /=  All files dated today                 /:HH:MM Files after certain time
  284.                                            /;HH:MM Files before certain time
  285.  /=MM-DD-YYYY  files dated on particular date           Where HH = Hour(1 - 24),
  286.  /-MM-DD-YYYY  files before particular date                   MM = Minutes
  287.  /+MM-DD-YYYY  files on or after certain date           Or format = HH:MMp
  288.                Where MM=Month,DD=Day,YYYY=Year          or format = HH: MMa
  289.   ** May be used to replace MM DD HH or MM. **** May be used to replace YYYY
  290.  /O  Overide environment switches                             
  291.  /(nn...nn  Files with size less than nn...nn
  292.  /)nn...nn  Files with sizes greater than nn...nn
  293.          where   0 <= nn...nn < 999,999,999   (may include commas)
  294.  /B  Print files with full drive + Backslash path name.
  295.  /,  Removes all commas from all numbers in listing
  296.  /C  Toggle 12/24 clock format  -N  Ignore network drives
  297.  -J  Ignore logical drives      -F  Ignore floppy drives, removable drives
  298.  
  299.  /INFO = More information
  300.  /? =Display Help page one      /?? = Displays this syntax help listing
  301.  
  302.    Examples Follow..........
  303.  
  304.    DOR \*.TXT /E /P  Displays all files with TXT extension, starting in the
  305.                      root directory, and searching all subdirectories ["/E"],
  306.                      Pausing every time the screen fills up ["/P"].
  307.  
  308.    DOR /+01-01-1992  Finds all files in current directory that were date stamped
  309.                      on or after Jan 1st, 1992.
  310.  
  311.    DOR \/E /:17:00 /;20:00
  312.                      Starts in the root directory ["\"] and searches all sub-
  313.                      directories ["/E"], finding files with time stamps After
  314.                      5 P.M. ["/:17:00"], but with time stamps before 8 P.M.
  315.                      ["/;20:00"]
  316.  
  317.    
  318.                                       6
  319.  
  320.    => If using both the /+ and /- date switches, put the /+ first !!!
  321.    => If using both the /: and /; time switches, put the /: first !!!
  322.  
  323.    DOR *.ASM /;      Finds all files in the current directory with the ASM
  324.                      extension that have time stamps before what the system
  325.                      clock is currently set to.
  326.  
  327.    DOR \/E /R /=02-**-1991
  328.                      Starts in the root directory ["\"] and searches all sub-
  329.                      directories ["/E"] for files that are set to READ-ONLY
  330.                      ["/R"], that were dated for ANY DAY in February 1991
  331.                      ["/=" means date equals to, "02" specifies February,
  332.                      "1991" is the year, and "**" matches for any day.]
  333.  
  334.    DOR \/E /=03-01-****
  335.                      Starts in the root directory ["\"], and searches all sub-
  336.                      directories for files with a date stamp for April Fool's
  337.                      Day in any year.
  338.  
  339.    DOR *.DOC /(40000 Find all files with extension of DOC that are less than
  340.                      40,000 bytes in length.
  341.  
  342.    DOR *.DBK /)50,000,000 Find all files with a DBK extension that are greater
  343.                         than 50,000,000 bytes large
  344.  
  345.    DOR \/E /+ /B >files.lst
  346.                      Ahah! Starting in the root directory, searching all sub-
  347.                      directories, with files stamped with the same date now set
  348.                      on the system clock (or later,) specifies the file by full
  349.                      drive:path\filename.extension, and writes this to the file
  350.                      files.lst.
  351.                        This gives a nice easy way to specify a list of files for
  352.                        backup purposes by a program such as, oh, um, PCCOPY.
  353.  
  354.    Do note that DOR is flexible when specifing date and/or time ranges.
  355.     => If using both the /+ and /- date switches, put the /+ first !!!
  356.  
  357.    DOR *.C /Z }B:    Finds all files in the current directory with the
  358.                      extension "C", and shows you how much space each
  359.                      [and cumulatively] they take up on drive B:
  360.                      ---> Useful for when copying files to floppies.
  361.                      Disk information shown will also pertain to drive B:
  362.  
  363.    DOR *.WK1 }B:     As above, but does not show amount of space required
  364.                      for individual files.
  365.  
  366.    DOR /L |SORT      Provides a sorted listing.
  367. @  DOR /L |SORT /+14            sorted by size.
  368. @  DOR /L |SORT /+26            sorted by date.
  369. @  DOR /L /C  |SORT /+35        sorted by time.
  370. @  DOR /L |SORT /+41            sorted by "unordinary attribute flag"
  371. @  DOR /L |SORT /+43            sorted by file attributes.
  372.  
  373. @ If you use DOR /2, /4, or /B options, using |SORT /+n isn't probably
  374.   a very good idea.
  375.  
  376.  
  377.  
  378.                                       7
  379.  
  380.    DOR \ /E /B /L |SORT >COMPLETE.LST
  381.                                 Finds all files on the current disk,
  382.                                 passes them as drive:path\filename.extension
  383.                                 listing to the DOS Sort utility, and then
  384.                                 writes them to the file COMPLETE.LST,
  385.                                 which contains an sorted list of all the files
  386.                                 on the disk.
  387.  
  388.   Note: Specifying "/L" will cause dor not to print drive & memory info,
  389.         or directory names or disk name.... DOR then simply gives file data.
  390.  
  391.   HINT: If you are going to redirect output from DOR using > >> or |   ,then
  392.         it makes life much easier for you NOT to use the "/P" option.
  393.         [I mention this because it won't work !!]
  394.         use something like this:
  395.  
  396.             DOR /L |SORT |MORE
  397.  
  398.         I have tried to idiot-proof this, however, it might not be enough.
  399.  
  400.   /,    Removes all commas in the file, disk & memory sizes, for those who
  401.         dislike easy-to-read numbers, and for compatiblity with DIR.
  402.  
  403.  
  404.   In General:
  405.     When specifying file sizes using "/(" or "/)", it doesn't bother DOR if
  406.        you put commas in the number or not, it just skips them.  If you put
  407.        a space in the number,DOR will think you meant the end of that number.
  408.     When specifying a time, for the "/:" or "/;" switches, either 
  409.        "17:00" or "05:00P" will give the same result, 5 PM.
  410.     Dates....  [COUNTRY=]
  411.        If you have in your CONFIG.SYS a line such as COUNTRY=xx, where xx
  412.     does not equal 1 (U.S.), then DOR may treat the date format differently,
  413.     for both directory listing, *AND* specifying dates for /+ /= or /-.
  414.     For example, if I have COUNTRY set to 44 (U.K.) and wish to search for
  415.     files dated after March 1, 1991, I use "DOR /+01-03-1991".
  416.     If you implicitly specify a YY-MM-DD format for display (Japan),
  417.       the specification format for /+ /= or /- is unchanged.
  418.     It the format listed on help page two "/??" will be correct for the
  419.     machine you're using. (What a great idea :-<)
  420.  
  421.     For v4.3, the old "/N" switch has been changed to "/NH" ("Name Hex").
  422.     It helps when options are specified on the command line before
  423.     the filespec / drive/ path data.
  424.  
  425.     When breaking down the command line, DOR looks for "/ND",& "/NH", then
  426.     date and time switches, then proceeds to strip anything that follows a
  427.     "/" , "+" or a "-" from its input.  This means that you can't use these
  428.     characters in specifying file names (filenames containing the characters
  429.     are still listable).  If you enter an line such as
  430.     "DOR *.FOR /$", DOR will ignore the "/$", and go ahead and list the files.
  431.     This is changed somewhat from earlier versions of DOR, where switches were
  432.     stripped on a one-by-one basis, and unrecognised switches caused errors
  433.     (usually, DOR returns "0 files found" if something goes wrong)
  434.  
  435.  
  436.  
  437.                                       8
  438.   
  439.  
  440.  
  441. What's new in 4.4?
  442.  
  443.      The -I switch has been changed to -F, which seems more obvious.
  444.      For users of 4.4 or less, this won't make much difference.
  445.      The "problem" of double-listing a subdirectory has been eliminated.
  446.  
  447.   The major addition to DOR has been support for switches set in the
  448.   environment section of DOS.  This means that if you routinely use
  449.   DOR with certain switches, you don't have to enter them every time.
  450.       For example, if you want the /2 and /P switches to always be used,
  451.   enter the line 'SET DORCMD= /2/P ' at the DOS prompt, or insert it into
  452.   your AUTOEXEC.BAT file (if you think you know what you're doing).
  453.   When DOR runs, it checks the environment for the 'DORCMD=' statement.
  454.   In this case, DOR would then automagically set the /2 and /p options.
  455.       To override switches set in the environment, put /O in your
  456.   command line. In this case "DOR /O" would give a normal listing, even if
  457.   DORCMD had been set to "/2/P" in the environment section.
  458.       If the Override ("/O") option is not specified in the command line,
  459.   then the options used will be those set by the command line AND those set
  460.   in the environment by "DORCMD=".  Putting a "/O" in the environment section,
  461.   (like somebody probably will try to) has no effect.
  462.  
  463. What's New in v5.1R ?
  464.   Briefly, support for multiple drives.  You can specify a list of drives 
  465.   ie "C: D: E:" or you can select all valid drives "*:".  But wait, you ask,
  466.   what if I've SUBSTituted some drive letters, will those files be listed
  467.   twice ?  Not with the -J option. 
  468.   What if I don't want to list my floppy drives? 
  469.        Use the -F option. 
  470.   What if I don't want a listing of files on network drives?
  471.        Use the -N option.  
  472.  
  473.   Similarly, options include /J  (logical drives only)
  474.                              /NO (Network drives only)
  475.                              /F  (floppies or other removable drives only).
  476.  
  477.  How do I get DOR v5.1R ?
  478.    The version number is an indicator!  5.1R for "Registered".
  479.    Print out the REGISDOR.DOC, enclose payment, and mail it to me.
  480.  
  481.  
  482.                                       9
  483.  
  484.  
  485.  
  486.   The Future:
  487.  
  488.         I still run into some problems now and then which require changes to
  489.      the code, which ends up as different from the previous versions.  I try
  490.      to get things working before releasing a new version, but this doesn't
  491.      always work, as I don't spot all the problems (and potential problems)
  492.      myself.  However, v5.1R has incorporated many suggestions received,
  493.      and will has been thouroughly pre-tested.
  494.  
  495.         DOR v4.4 is the last in the series to be released as sharware.
  496.      this simply means that all future verions will be available only to
  497.      registered users of DOR v4.4 or earlier.
  498.  
  499.         DOR v5.1R works with multiple drives,and can list files across multiple
  500.      drives, with error-checking for drives that are not ready (such as
  501.      floppies or removable hard disks),much in the way other programs can.
  502.  
  503.         DOR v5.1R is a version available only to those who have registered
  504.      their copy of DOR. As of v4.4, the minimum registration fee is set at
  505.      $15 for individuals and $25 for organizations.
  506.  
  507.  
  508. -----------------------------------------------------------------------------
  509.      DOR is just another example of the mindless creations brought about by
  510. Kawonk Experimental Software Projects.  Later this year we hope to have a
  511. prototype of the adventure game RUNCIBAL QUEST ready for release.
  512.     Or, wait for the (possible but at the moment improbable) release of the
  513. popular arcade game, "Revenge of the Ovuloid Citruses."
  514. -------------------------------------------------------------------------------
  515.  
  516.   Comments ? Complaints ?? Unusual personality disorders ??
  517. Send a letter or postcard. [even if you are not going to pay the measly
  518. registration fee, tell me if you find any redeeming value in the program]
  519. Customized versions (such as if you want the +S and +H switches set to ON
  520. all the time)/ source code may be available for a fee.
  521.  
  522.   And yes, I *do* know that DOR does not work on all machines, at least DOR
  523. now checks for your DOS version.  It seems to dislike very old BIOS versions,
  524. still.
  525.   
  526.  
  527.  
  528.  
  529.