Test on exit status of a command

suggest change

Exit status 0: success Exit status other than 0: failure

To test on the exit status of a command:

if command;then
    echo 'success'
else
    echo 'failure'
fi

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents