home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / SYSTEM / DSKUTL11.ZIP / READ.ME < prev    next >
Encoding:
Text File  |  1991-06-30  |  3.3 KB  |  75 lines

  1.  
  2.                         DISK UTILITIES version 1.1
  3.  
  4.         Here are quite a few utilities which I wrote in TurboC.
  5. The DOS copy, rename, dir, and more commands lacked some features which
  6. I became accustomed to under UNIX.  Thus, I wrote these programs to
  7. make DOS more usable (and powerful).  This package includes the following
  8. freeware programs:
  9.     chmode - change the mode of a file
  10.     cp     - copy files and directories
  11.     du     - calculate disk usage (space)
  12.     find   - List files recursively and/or execute a command each file.
  13.     mv     - move files and directories
  14.     page   - view text files
  15.     ls     - display contents of directories (like dir, but better format)
  16.     rm     - remove (delete) files or directories
  17.  
  18.     SOME FEATURES:
  19.         These routines support multiple arguments on the command line.
  20. For example to copy all .com and .exe files to a: use "cp *.com *.exe a:".
  21.         Many programs support recursion.  For example to delete every
  22. file on the c: drive, "rm -rf c:\*.*".  (cp, du, find, ls, and rm are all
  23. recursive).
  24.         Many programs allow for the use of patterns.  For example to
  25. delete every file ending in .c or .h but not starting with t, 
  26. "rm -fpps *.c *.h t*.* *.*" (strange looking, but works, the p is for 
  27. patterns to match and the s is for patterns to skip).
  28.         These programs do not have the DOS wildcard limitation.  Wildcards
  29. such as *a.* will work.
  30.         All programs have some online help, which is displayed when
  31. you type "<command> -h" (<command> is the name of the program).
  32.  
  33.    DOCUMENTATION:
  34.         The documentation is located in the ".man" files.  To look at all
  35. of the documentation type "page *.man".  Some terminology which I use:
  36.     []  - This element is optional.  For example, [file] means you may type
  37. a filename if you desire.
  38.     <>  - Something must be typed in the place of braces.  For example,
  39. <file> means a filename must be present on the command line.
  40.     ... - Multiple items of this sort may exist.  For example [file ...]
  41. means you may type zero to however many filenames DOS allows (command
  42. line length limit).
  43.  
  44.     DISCLAIMER:
  45.         I assume no liability for any damage which may result from use
  46. of these programs.  To my knowledge they all work very well
  47. (I use them constantly), and any bugs I'm aware of have been noted
  48. in the documentation.
  49.  
  50.    REGISTRATION:
  51.         These programs are freeware, meaning that you may use them
  52. at no cost (but I maintain all rights).  I would appreciate it if 
  53. you sent me your name so I can keep track of people using my programs 
  54. and give updates.  If you use email (or compuserve), let me know if you 
  55. would like updates.  When I come out with new versions, I will just 
  56. email them to you if you desire.
  57.  
  58.     If you have any comments or find any bugs please let me know, so 
  59. I can continue to improve these utilities.
  60.  
  61.                 Keith Grandin
  62.                 400 West South Boulder Road #82
  63.                 Louisville, CO  80027
  64.  
  65.         EMAIL:
  66.         grandin%tramp@boulder.colorado.edu
  67.         grandin@tramp.colorado.edu
  68.         ...ncar!boulder!tramp!grandin
  69.  
  70.         FROM COMPUSERVE:
  71.     From Easyplex, at the "To" prompt type:
  72.         >internet:grandin@tramp.colorado.edu
  73.     or
  74.         >internet:grandin%tramp@boulder.colorado.edu
  75.