You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off
|
|
if [%1] == [] echo No exit code was supplied, aborting! & exit /B 3
|
|
if [%2] == [] echo No dummy message was supplied, aborting! & exit /B 3
|
|
echo %~2
|
|
exit /B %1%
|