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

  1.  
  2. // example: copy lines
  3.  
  4. // remove separator lines and stop when a terminator line is read
  5.  
  6.  
  7. // input the data file
  8. input "data.in" to data
  9.  
  10. // copy the wanted lines to the report file
  11. copy lines from data to report where (not (line beginsWith "--")) until (line contains "***END***")
  12.