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

  1.  
  2. // examples: scanning
  3.  
  4. // show first non-blank line of all
  5. // .TXT files in your windows directory
  6.  
  7.  
  8. // nb: you may have to change the next line :-
  9. for each file "*.TXT" in "c:\windows"
  10.   input afile
  11.   skip lines until (line<>"")
  12.   write (afile ": " line)
  13.  
  14.   // comment out the next line to make the program run faster
  15.   refresh
  16.  
  17. next
  18.