home *** CD-ROM | disk | FTP | other *** search
/ The Best of Windows 95.com 1997 April / Win95_04974.iso / docs / 00013 / 01313.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.