Test on exit status of a command
suggest changeExit 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
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents