In a shell script I have the following code:
if echo Mr.32 ; then
echo Success
else
echo Failed
exit
fi
What is the equivalent syntax for Windows batch files?
In a shell script I have the following code:
if echo Mr.32 ; then
echo Success
else
echo Failed
exit
fi
What is the equivalent syntax for Windows batch files?