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

  1.  
  2. // example: using read and write instead of copy lines
  3.  
  4. // input the data file
  5. input "data.in" to data
  6.  
  7. // copy the wanted lines to the report file
  8. do while (someLeft data)
  9.   read from data
  10.   leave if (line contains "***END***")
  11.   if (not (line beginsWith "--"))
  12.     write to report
  13.   endif
  14.  
  15.   // comment out the next line to make the program run faster
  16.   refresh
  17.  
  18. loop
  19.