home *** CD-ROM | disk | FTP | other *** search
- 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