home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / os / vms / 12896 < prev    next >
Encoding:
Internet Message Format  |  1992-07-29  |  1.5 KB

  1. Path: sparky!uunet!cis.ohio-state.edu!ucbvax!CCMAIL.SUNYSB.EDU!SMANTHANI
  2. From: SMANTHANI@CCMAIL.SUNYSB.EDU (Satyanarayana Manthani)
  3. Newsgroups: comp.os.vms
  4. Subject: Re: Last page of *.txt
  5. Message-ID: <01GMY13HIPJQATK60Y@ccmail.sunysb.edu>
  6. Date: 29 Jul 92 13:07:13 GMT
  7. Sender: usenet@ucbvax.BERKELEY.EDU
  8. Organization: State University of New York, Stony Brook
  9. Lines: 33
  10.  
  11.  
  12.  >    On several occasions I need to print out the last page of a
  13.  >    very large report. To date I use the EDT+ editor to move to
  14.  >    the last page (pf1+4) and select the lines I want to a temporary
  15.  >     file. Then the file is submitted to the printer queue.
  16.  
  17.  >     This works fine, but I'm almost sure that there is a more
  18.  >    sophisticated way of getting the last page printed!
  19.  
  20.  >    Any help is greatly appreciated.
  21.  
  22.  >    John Rusterholz
  23.  
  24.  >    e-mail: j_rusterholz@eis_john.nijmeg.ingr.com
  25.  
  26.     If you know the last page number, you can use print command with the
  27.         qualifiers given below.
  28.  
  29.         $ PRINT/PAGES=(last_page_no,last_page_no + 1)  MYFILE.TXT
  30.  
  31.     where last_page_no is the last page number and you have to specify
  32.         a number.
  33.  
  34.     Even if you do not know the exact last page number, still you should
  35.         be able to print a last page of a file with some thing like this.  
  36.         Spacify a very large number for the last_page_no.  For example if you 
  37.         expect the whole print out to be 100 pages, give the following command.
  38.  
  39.         $ PRINT/PAGES=(100000,100001) MYFILE.TXT  
  40.  
  41.     Try HELP PRINT/PAGES for more information.
  42.         
  43.  
  44.