home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
v8n02.arc
/
REPLDEMO.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1989-01-08
|
269 b
|
13 lines
@ECHO OFF
ECHO Do you want to continue? Answer yes or no.
CALL GETREPLY
FOR %%f IN (yes no YES NO) DO IF %reply%==%%f GOTO %%f
ECHO You entered "%reply%" -- that is not yes or no.
GOTO end
:yes
ECHO You entered yes.
GOTO end
:no
ECHO You entered no.
:end