home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Education Master 1994 (4th Edition)
/
EDUCATIONS_MASTER_4TH_EDITION.bin
/
files
/
educmath
/
kwikst3
/
show.bat
< prev
next >
Wrap
DOS Batch File
|
1993-10-01
|
543b
|
20 lines
echo off
if %1x==x goto oops
if %2x==x goto oops
echo -------------------------------------------------------------
echo Show the PCX file named %1 in %2 mode.
echo Press Enter to end program. If no graph appears, you may have
echo entered a wrong name or a wrong monitor mode.
echo -------------------------------------------------------------
pause
txprt /show (%1) /M%2
goto isend
:oops
echo The format for this command is:
echo SHOW filename.pcx [EGA,VGA]
echo for example:
echo SHOW TEST.PCX EGA
echo
:isend