home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / browse.zip / BROWSE / BROWSE.DOC < prev    next >
Text File  |  1994-08-11  |  5KB  |  120 lines

  1. BROWSE - VIEW A TEXT FILE LINE BY LINE.  REXX program.  ─V─940515─
  2.          ┌──────────────────────────────┐
  3.          │ AUTHOR: Bruce E. Högman      │
  4.          │ (C) COPYRIGHT 1992, 1994.    │
  5.          │ All Rights Reserved.         │
  6.          │ COMPUSERVE:  72050,1327      │
  7.          └──────────────────────────────┘
  8.  
  9. ■   BROWSE Text files.
  10.  
  11. ■   BROWSE binary files.
  12.  
  13. ■   View file data in ASCII or in hexadecimal.  BROWSE translates some
  14.     unprintable characters in order to display them on the screen.
  15.  
  16. ■   Use more than 25 lines per screen (OS/2 2.0 VGA supports up to 60).
  17.  
  18. ■   Use 80+ columns (when SVGA OS/2 support is available).
  19.  
  20. ■   Set your own preferences for screen color, size and save them.
  21.  
  22. ■   Choose files from directory and navigate drives and directories.
  23.  
  24. ■   Edit files using your favorite text editor.
  25.  
  26. ■   Search for text and display matching lines in file browse.
  27.  
  28.                 ─────────────────────────────────────────
  29.  
  30. SYNTAX of BROWSE command line:
  31.  
  32.     BROWSE file_spec    /a /b /w /i /h
  33.  
  34. /a  View all lines, including all blank lines.  BROWSE suppresses
  35.     display of groups of blank lines, retaining a single blank line.
  36.  
  37. /b  Handle the file as a binary file.  Read the file in using a "line"
  38.     length which is the current screen size, ignoring any CRLF which
  39.     may be in data.  BROWSE will check to see if the file data should
  40.     be considered as binary data (executables, .SYS, etc.) using the
  41.     data in the first 80 bytes of the input file, and will set /B
  42.     processing itself.
  43.  
  44. /h  Display help information, command line syntax and keys help.
  45.  
  46. /i  Initialize stored parm values:  restore to default.
  47.  
  48. /q  Quiet - suppress display of Copyright notice.
  49.  
  50. /w  Don't fold long lines.  BROWSE folds lines longer than the current
  51.     screen width to fit on the screen so you don't have to scroll from
  52.     side to side to see all the data.  The /w option turns this off.
  53.  
  54.                 ─────────────────────────────────────────
  55.  
  56. SOFTWARE REQUIREMENTS:
  57.  
  58. ■   OS/2 2.x
  59.  
  60. ■   REXX
  61.  
  62. ■   ANSI screen handling enabled (ANSI ON)
  63.  
  64.                 ─────────────────────────────────────────
  65.  
  66. This program is published as shareware by the author, who ascribes
  67. to the principles and practices of the Association of Shareware
  68. Professionals.  If you use this program, please support the
  69. shareware principles by registering this program with the author for
  70. a suggested fee of $7.  The author will send you the next published
  71. version at no additional cost.  You may copy this program freely and
  72. distribute it as long as there is no fee charged for this program by
  73. itself.
  74.  
  75.                 ─────────────────────────────────────────
  76.  
  77. Release ─V─940515 Notes
  78.  
  79. ■   Fixed bugs in handling of root directory "no files found" msg,
  80.     display of cursor in popup windows.
  81.  
  82. ■   Hex display of file data (1 line data, 2 lines vertical hex).
  83.     This version has a rudimentary form of the hex display.
  84.  
  85. NEW IN RELEASE ─V─920810─
  86.  
  87. ■   Edit file displayed in directory listing, or edit file being
  88.     browsed using 'E' letter key to select for edit.
  89.  
  90. ■   Choose the editor to use with the edit function.  OS/2 Editor is the
  91.     default.  Note:  command generated is:  E fullfilename You may use
  92.     'E' to select a directory to edit, in which case the OS/2 editor
  93.     will produce an error, but other editors will bring up a display of
  94.     the files in that directory (SPF\2 by Command Technology Corp, or
  95.     TSPF by Tritus Inc. editors both function in the latter manner).
  96.  
  97. ■   Select another directory or filename using 'F' key.
  98.  
  99. ■   Search for text in file under browse and display lines containing
  100.     text.  This requires that browse.cmd be in the OS/2 PATH, since it
  101.     uses BROWSE as a subcommand.  Place BROWSE.CMD in \OS2\APPS.
  102.  
  103.                 ─────────────────────────────────────────
  104.  
  105. FUTURE RELEASES:
  106.  
  107. ■   User-programmable keyboard functions (user macros) to support
  108.     invoking programs or batch files using the currently highlighted
  109.     list item.
  110.  
  111. ■   Full Hex display of file data (1 line data, 2 lines vertical hex).
  112.  
  113.                 ─────────────────────────────────────────
  114.  
  115.                              ┌─────────────────────────────────────────┐
  116. Bruce E. Högman              │ AUTHOR: Bruce E. Högman                 │
  117. 1338 Avocado Isle            │ (C) 1992, 1994.     ALL RIGHTS RESERVED │
  118. Fort Lauderdale FL 33315-1344│ COMPUSERVE: 72050,1327                  │
  119.                              └─────────────────────────────────────────┘
  120.