home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SDN¹ Plus
/
SDN1_.cdr
/
dbase
/
bkck22.exe
/
lha
/
RUNME.BAT
< prev
Wrap
DOS Batch File
|
1990-11-24
|
1KB
|
26 lines
ECHO OFF
CLS
IF NOT EXIST READ.EXE GOTO SYNTAX
IF EXIST BKCK.DES READ BKCK.DES
IF NOT EXIST BKCK.DOC GOTO NOFILE
READ BKCK.DOC
DIR
GOTO END
:NOFILE
ECHO ┌───────────────────────────────────────────────────────────────────────┐
ECHO │ I cannot find the BKCK.DOC text file! It should be on the │
ECHO │ distribution diskette. │
ECHO └───────────────────────────────────────────────────────────────────────┘
:SYNTAX
ECHO ┌───────────────────────────────────────────────────────────────────────┐
ECHO │ To start the "RUNME.BAT" program, please insert the distribution │
ECHO │ diskette in either the A: or B: floppy disk drive and enter the │
ECHO │ following TWO command lines: │
ECHO │ │
ECHO │ A: Press Enter (or B: if using B: floppy) │
ECHO │ RUNME Press Enter │
ECHO └───────────────────────────────────────────────────────────────────────┘
:END