home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 11 / PCPP11.iso / utils / frogbit / fb-097.exe / SKIPLINES1.FB < prev    next >
Encoding:
Text File  |  1997-02-04  |  243 b   |  13 lines

  1.  
  2. // example: skip lines
  3.  
  4.  
  5. // input the data file
  6. input "data.in" to data
  7.  
  8. // skip the unwanted lines
  9. skip lines from data until (line beginsWith "==")
  10.  
  11. // copy the rest of the data to the report file
  12. copy lines from data to report
  13.