home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 June
/
PCWorld_1998-06_cd.bin
/
software
/
sharware
/
utility
/
PACKERS
/
ARJ
/
ARJ250A.EXE
/
ARJDISP.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-12-12
|
437b
|
16 lines
REM ARJDISP.BAT
REM Batch file to demonstrate special ARJ display feature
echo off
echo ARJDISP demonstration batch program
if not exist ARJ250A.EXE goto error
if not exist ARJ.EXE goto error
if not exist ARJ$DISP.EXE goto error
arj$disp test
goto end
:error
echo To run this program, the files ARJ.EXE, ARJ$DISP.EXE, and ARJ250A.EXE
echo should all be in this directory. This program will not write to any files.
:end