home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
batch
/
library
/
el
/
test.bat
< prev
Wrap
DOS Batch File
|
1990-08-29
|
176b
|
13 lines
@echo off
echo Testing call to %1, param %2
%1 %2
echo Errorlvl = %errorlevel
if errorlevel %2 goto Okay
:ng
echo Set failed
goto wrap
:Okay
echo Set worked
:wrap