home *** CD-ROM | disk | FTP | other *** search
/ Windoware / WINDOWARE_1_6.iso / source / v11n10 / savemac.bas < prev    next >
BASIC Source File  |  1991-08-22  |  308b  |  16 lines

  1. 10 REM a$="filename for list of macros"
  2. 20 a$ = "c:\dos\mac.dat"
  3. 30 REM b$="filename for loading macros"
  4. 40 b$ = "c:\dos\loadmac.bat"
  5. 50 OPEN a$ FOR INPUT AS 1
  6. 60 OPEN b$ FOR OUTPUT AS 2
  7. 65 IF EOF(1) THEN 200
  8. 70 INPUT #1, c$
  9. 80 PRINT #2, "doskey " + c$
  10. 90 GOTO 65
  11. 200 CLOSE 1, 2
  12. 210 SYSTEM
  13.  
  14.  
  15.  
  16.