home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / mbug / mbug039.arc / SCROLL.DOC < prev    next >
Text File  |  1979-12-31  |  2KB  |  47 lines

  1. I.DOC for I.COM V. 2, A Text File Utility Program        1/12/84
  2.  
  3. I.COM allows viewing of files of any length by filling memory with as 
  4. much of the file as will fit (about 55K max). The file, or portion of 
  5. a file, in memory may be scrolled through, paged forward or 
  6. backwards, searched, and skipped through in 124 line jumps. You can 
  7. jump to the first page or the last page and print any page. When you 
  8. are through with the current buffer contents, you can load the next 
  9. part of a large file or another file or you can quit with a warm boot.
  10.  
  11. To use I.COM you may enter the file name after the program name, i.e. 
  12. I B:LISTING.ASM or let the program prompt you for the file name. It 
  13. will then load the file into memory and display the first page. 
  14. Commands, all of which are single characters may then be entered.
  15.  
  16. The commands are:
  17.  
  18.     SP        -    Print the next line to the console
  19.     V        -    Print the next page to the console
  20.     Z        -    Print the last page to the console
  21.     S        -    Search for a string, forward
  22.     C        -    Continue search for current string
  23.     P        -    Print the current page to LST device
  24.     N        -    Get a new file
  25.     M        -    Get the next part of a file
  26.     ,        -    Skip back 124 lines
  27.     <        -    Skip back to the start
  28.     .        -    Skip forward 124 lines
  29.     >        -    Skip forward to the end
  30.     Q        -    Quit with a warm boot
  31.  
  32. The search command prompts (with a '?') for a string of up to 16 
  33. characters. If the string is not found 'No' is printed, otherwise the 
  34. next screen ending in the line containing the string is printed. The 
  35. continue command resumes the search, with the same string, on the 
  36. next line.
  37.  
  38. All letter commands and file names may be upper or lower case. 
  39. Ambiguous names are not allowed. The file extension may be anything 
  40. other than .COM, but it will look pretty weird if the file isn't a 
  41. text file.
  42.  
  43. Mark Boyd, Computer Science Department
  44. Wichita State University
  45. Wichita, KS 67208
  46.  
  47.