home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC User 2001 August
/
APC_Aug2001_CD2.iso
/
features
/
devtools
/
files
/
lb202win.exe
/
LB202W.EXE
/
RUNBATCH.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1996-05-24
|
241 b
|
12 lines
'how to run a DOS batch file from Liberty BASIC
open DefaultDir$+"\test.bat" for output as #1
print #1, "pause - this is a test"
print #1, "exit"
close #1
run "command.com /k "+DefaultDir$+"\test.bat"