home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
arc_lbr
/
scrnch.arc
/
TESTR.BAT
< prev
next >
Wrap
DOS Batch File
|
1987-11-03
|
482b
|
24 lines
echo off
if %1x == x goto syntax
copy scrxr.stb + %1.txt %1.bin
scrnch /o /e:%1.bin prtparm.com testexit.com
testexit
goto finish
:syntax
echo
echo Syntax
echo TESTR exitname
echo
echo This .BAT file allows you to test a Run Mode exit.
echo The exit will be created by appending it to SCRXR.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