home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / vsoup128.zip / readme.1st < prev    next >
Text File  |  1997-04-20  |  1KB  |  47 lines

  1. Welcome to VSoup1.2.8, the multithreaded Souper for OS/2.  The archive
  2. contains two formats of the documentation: text file format and info
  3. file format.  You can view VSoup.Inf either with the OS/2 view utility
  4. (view vsoup.inf) or VSoup.Txt with a pager which knows poor (wo)mans
  5. underline/bold characters, e.g. 'less' is a good choice (less
  6. vsoup.txt) but 'more' will also work - without highlighting of course.
  7.  
  8. If you need VSoup.Txt in plain ASCII without highlighting, you could
  9. use the script below (also contained in the archive):
  10.  
  11. --------------------------------------------------------------------------------
  12. /*  rmhigh.cmd
  13.  *
  14.  *  removes the highlighting stuff in VSoup.Txt
  15.  *  invoke with 'rmhigh < vsoup.txt > vsoup.doc'
  16.  */
  17.  
  18. IF chars() \= 0 THEN
  19.     c2 = charin()
  20. ELSE DO
  21.     SAY 'need input file on stdin!'
  22.     EXIT 1
  23. END
  24.  
  25. DO WHILE chars() \= 0
  26.     c1 = c2
  27.     c2 = charin()
  28.     IF c2 \= X2C('8') THEN
  29.     rc = charout( ,c1 )
  30.     ELSE
  31.     c2 = charin()
  32. END
  33.  
  34. EXIT 0
  35. --------------------------------------------------------------------------------
  36.  
  37.  
  38. The standard disclaimer can be found in COPYING.
  39.  
  40. If you are a first time user of VSoup, you should read the
  41. documentation.  If you are only upgrading, you should have a look at
  42. the history section.
  43.  
  44.  
  45. Hardy Griech, 19-Apr-1997
  46. rgriech@swol.de
  47.