home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
arc_lbr
/
scrnch.arc
/
TESTW.BAT
< prev
Wrap
DOS Batch File
|
1987-11-30
|
605b
|
28 lines
echo off
if %1x == x goto syntax
if exist contents.doc goto cont1
echo this file was created by testw.bat >contents.doc
dir /w >>contents.doc
:cont1
copy scrxw.stb + %1.txt %1.bin
scrnch /o /e:%1.bin contents.doc testexit.com
testexit
goto finish
:syntax
echo
echo Syntax
echo TESTW exitname
echo
echo This .BAT file allows you to test a Write Mode exit.
echo The exit will be created by appending it to SCRXW.STB.
echo The result will be named exitname.bin. SCRNCH is used
echo to add the exit to a program, then the program is called.
echo
goto finish
:finish