home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / more.zip / README < prev   
Text File  |  1994-01-15  |  3KB  |  84 lines

  1.  
  2. Hi !
  3.  
  4. This is another more. It has features like:
  5. - takes arguments directly following the command
  6. - multiple argument support
  7. - WILDCARD support * ?
  8. - works through pipes |
  9. - input redirection possible <
  10. - much faster than os/2's own more
  11. - supports different window sizes
  12. - will NOT SPOIL your COLORS (like some other mores will do)
  13. - output redirection > is not working very well, type recommended instead
  14.  
  15. Examples:
  16. more readme more.c
  17. more r*m??
  18. more *c 
  19. type readme | more
  20. more < readme
  21.  
  22. If you necessarily want to view very large files with more, it will take
  23. a couple of seconds for more to display the first screen. This time is
  24. taken because the program first counts the # of lines in the text file (this 
  25. has the side effect that the text file gets read to your disk cache, hopefully
  26. it will remain there long enough). In this case you can start more quickly by 
  27. using input redirection:
  28. 'more < filename' but you'll lose the %-info.
  29.  
  30. INSTALLATION
  31.  
  32. Put more.exe to a directory in your path + rename of remove your old more.
  33.  
  34. KEYS
  35.  
  36. After each page is displayed, more pauses waiting for a key to be pressed.
  37. Three keys have special meanings:
  38. - 'q' will quit right there
  39. - ENTER will show you four lines more
  40. - 'v' will display version info on the bottom line of the screen
  41. - any other key will show you a new page.
  42.  
  43.  
  44. WARRANTY & LICENSING
  45.  
  46. This program is provided WITHOUT ANY WARRANTY 'as is', so you may use it at 
  47. your own risk. You may freely use it and distribute it but you are not allowed
  48. to take charge for this program.
  49.  
  50.  
  51. SOURCE
  52.  
  53. The source is included here so you can modify it according to your wishes.
  54. You may use parts or all of the source in your program(s) but then the 
  55. original author and the names of the modifiers must be mentioned in the 
  56. comments of your source and you are not allowed to take charge for 
  57. distributing your program. 
  58. This program was compiled with BC++ 1.0 for os/2; wildcard support was
  59. provided by linking the source with WILDARGS.OBJ by Borland.
  60.  
  61. BUGS
  62.  
  63. If the last line of a page has tab-characters and thus the line gets
  64. expanded over the width of your screen to the next line, the top line 
  65. of the page will be scrolled away.
  66.  
  67. This could be (kind of) fixed by repeating the last line on top of the new 
  68. page (well the fix wouldn't be perfect, suppose you have 40 tabs and then
  69. some text :-). Not fixed in this release anyway.
  70.  
  71. AUTHORS COMMENT
  72.  
  73. Stephen Lacy has written a more that is extremely fast. When it reaches
  74. the level of doing colors ok, I - too - will probably use it instead.
  75.  
  76.  
  77. COMMENTS
  78.  
  79. If you like this program or find a bug, please send me a note.
  80. The internet address is
  81.  
  82. lkuru@snakemail.hut.fi
  83.  
  84.