home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / source / pct.arc / READ.ME < prev    next >
Text File  |  1986-04-01  |  2KB  |  85 lines

  1. This disk contains C-source code and executables for some UNIX-like
  2. software tools for use with MS-DOS 2.x.  Briefly:
  3.  
  4. browse file1 file2 ...
  5.         A powerful file browse utility; 4-way scrolling, string
  6.         search.
  7.  
  8. darken [-n] file1 file2...
  9.         Overstrike text files n times for darker print (default = 3).
  10.  
  11. dump file1 file2 ...
  12.         Provides a hexadecimal/ASCII dump of any file.
  13.  
  14. fcomp file1 file2
  15.         Best version of DIFF (file comparator) from Jan. '86
  16.         issue of Software Practice and Experience.
  17.  
  18. grep [-cfilnv] file1 file2...
  19.         improved version of GREP (see source code).
  20.  
  21. merge file1 file2 file3 ...
  22.         merge sorted files into one sorted file.
  23.  
  24. page file1 file2 file3 ...
  25.         view files 1 screen at a time.
  26.  
  27. pr [loads of options!] file1 file2...
  28.         The best file printer available (see source).
  29.  
  30. rm [-g] file1 file2...
  31.         delete files with/without verify; peek to be sure.
  32.  
  33. roff file1 file2...
  34.         Readable source code (finally) for a text formatter.
  35.  
  36. subst [-i] oldstring newstring file
  37.         string substitution without an editor
  38.  
  39. wc [-cwl] file1 file2...
  40.         a fast word count.
  41.  
  42. These constitute a public domain offering of some of the tools found
  43. in the packages "WildCard" and "Ace" marketed by Prickly Pear Software
  44. in Tucson Arizona (602-749-2864), $34.95 each.  The full versions offer:
  45.  
  46.     1) Wildcards and paths in all file specifications
  47.  
  48.     2) Fast BIOS display/scrolling/keypad use in BROWSE and PAGE
  49.  
  50.     3) Indirect files (contain filenames to be processed repeatedly)
  51.  
  52.     4) Large model compilation when appropriate
  53.  
  54.     5) More tools: cp mv xref include chmod msort split uniq
  55.                    cat calc 
  56.  
  57. All are written in Mark Williams C, fast and compact.
  58.  
  59. Other files on this disk:
  60.  
  61.     case.c -
  62.         contains strlower(), strupper()
  63.  
  64.     ftrim.c -
  65.         contains trim_fspec()
  66.  
  67.     makearg.h -
  68.         command line parser for quoted arguments!!!
  69.  
  70.     xdir.* -
  71.         read directory, ffirst(), fnext()...
  72.  
  73.  
  74. Most of these programs are filters, meaning that I/O redirection is
  75. sometimes necessary.  For example, when using "pr", output goes to the
  76. screen by default.  Redirect it to the printer with the statement
  77.  
  78.     pr [options] file >prn
  79.  
  80. NOTE: 100% IBM compatible users will need to boot up with ANSI.SYS.
  81.  
  82. 3-31-86
  83. Chuck Allison
  84. 602-742-2448
  85.