home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lb091.zip / PRINTIT.BAS < prev    next >
BASIC Source File  |  1995-09-15  |  153b  |  11 lines

  1.  
  2.     open "c:\autoexec.bat" for input as #1
  3.     while eof(#1) = 0
  4.         line input #1, a$
  5.         lprint a$
  6.     wend
  7.     close #1
  8.  
  9.     dump
  10.  
  11.