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

  1.  
  2. // remove sections looking like this :-
  3.  
  4. //  Summary ...
  5. //  ...
  6. //  Total ...
  7.  
  8. input "report.txt"
  9.  
  10. do
  11.   copy lines until (line beginsWith "Summary")
  12.   skip lines until (line beginsWith "Total")
  13.  
  14.   // comment out the next line to make the program run faster
  15.   refresh
  16.  
  17. loop until (noneLeft input)
  18.