home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
pcmagazi
/
1989
/
10
/
realcomp.bat
< prev
next >
Wrap
DOS Batch File
|
1989-04-18
|
324b
|
19 lines
ECHO OFF
IF %1.==. GOTO ERROR
IF %2.==. GOTO ERROR
COMP %1 %2 > STOPGAP.FIL < ANSWER.NO
COMP %2 %1 >> STOPGAP.FIL < ANSWER.NO
CLS
TYPE STOPGAP.FIL | FIND "File not found"
ECHO.
DEL STOPGAP.FIL
GOTO END
:ERROR
ECHO.
ECHO You must include two pathnames. Press any key to continue.
ECHO.
PAUSE > NUL
:END