home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / UTILS1 / DOUBLE.ZIP / FROMJOHN.BAT < prev    next >
DOS Batch File  |  1994-02-06  |  1KB  |  26 lines

  1. @echo off
  2. goto Start
  3.                              ┌────────────┐
  4.                              │FROMJOHN.BAT│
  5.                              └────────────┘
  6.                         Sun  02-06-1994  11:53:59
  7.  
  8.      This batch file just loads the text file using my littlest
  9.      QuickBASIC file loader READ.COM. As an aside, I just started using
  10.      Microsoft's Assembly language software (MASM). In that set of files
  11.      there is an Assembly file loader that looks -just like- READ.COM.
  12.      It is 5700 bytes long. READ.COM is 8700 bytes! READ.COM is written
  13.      in QuickBASIC and compiled with Crescent's PDQ software. So don't
  14.      let the Assembly or "C" meowers brag too much about "being small"
  15.      to you QuickBASIC cats.
  16.  
  17.      The "/n" switch after the file name suppresses the "brag-box." You
  18.      can then use READ.COM to load text files into your batch files
  19.      without the user being distracted by my brag-box when he/she exits
  20.      READ.COM. The only way you can see the brag-box is by loading a
  21.      file without the "/n" switch. You can even use a factitious file
  22.      name or an executable file, READ.COM doesn't care....
  23.  
  24. :Start
  25. read double.txt/n
  26.