User Tools

Site Tools


bash:output:check_exit_status

This is an old revision of the document!


BASH - Output - Check Exit Status

To get the exit status, you use the special parameter $? after running the command:

command
status=$?

Check exit status

If you don't actually want to store the exit status, but simply want to take an action upon success or failure, just use if:

if command; then
    printf "it succeeded\n"
else
    printf "it failed\n"
fi

bash/output/check_exit_status.1611672635.txt.gz · Last modified: 2021/01/26 14:50 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki