home *** CD-ROM | disk | FTP | other *** search
- @echo off
- goto Start
- ┌────────────┐
- │FROMJOHN.BAT│
- └────────────┘
- Tue 02-15-1994 16:44:40
-
- This batch file just loads the text file using my littlest
- QuickBASIC file loader READ.COM.
-
- The "/n" switch after the file name suppresses the "brag-box." You
- can then use READ.COM to load text files into your batch files
- without the user being distracted by my brag-box when he/she exits
- READ.COM. The only way you can see the brag-box is by loading a
- file without the "/n" switch. You can even use a factitious file
- name or an executable file, READ.COM doesn't care....
-
- :Start
- read show_pic.txt/n
-