Does anybody know what is the equivalent to $? in Windows command line? Is there any?
EDIT: $? is the UNIX variable which holds the exit code of the last process
|
Does anybody know what is the equivalent to EDIT: |
|||||||||||
|
|
You want to check the value of |
|||
|
|
Windows Batch Files
http://technet.microsoft.com/en-us/library/bb490954.aspx Windows Powershell
http://blogs.msdn.com/powershell/archive/2006/09/15/ErrorLevel-equivalent.aspx Cygwin Bash Scripting
|
||||
|
|
|
Sorry to dredge up an old thread, but it's worth noting that %ERRORLEVEL% doesn't get reset with every command. You can still test "positive" for errorlevel after several lines of subsequent--and successful--batch code. You can reliably reset errorlevel to a clean status with
Feel free to use this. If you haven't seen UnxUtils, check 'em out. |
|||
|
|
|
|||
|