Home
NOTE: I'm in the middle of upgrading the site. Most things are in place, but some things are missing and/or broken. This includes alt text for images. Please bear with me while I get things fixed.

Get The Exit Status Code For The Last Command

The exit code for the last thing run can be seen with the variable :

$?

Zero is the standard value that gets returned if the preceedeing process was successful. Any non - zero numbers mean it failed in some way.

Example usage

echo $?
Note

Being able to use ` $? [TODO: Code shorthand span ] is one reason why it's a good idea to return proper exit status codes from any command line apps you write.

~ fin ~