bash:output:check_exit_status
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:output:check_exit_status [2021/01/26 14:49] – peter | bash:output:check_exit_status [2021/01/26 14:58] (current) – [Exit Status from a piped command - using PIPESTATUS] peter | ||
---|---|---|---|
Line 6: | Line 6: | ||
command | command | ||
status=$? | 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: | ||
+ | |||
+ | <code bash> | ||
+ | if command; then | ||
+ | printf "it succeeded\n" | ||
+ | else | ||
+ | printf "it failed\n" | ||
+ | fi | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Exit Status from a piped command - use PIPESTATUS ===== | ||
+ | |||
+ | What if you want the exit status of one command from a pipeline? | ||
+ | |||
+ | If you want the last command' | ||
+ | |||
+ | If you want some other command' | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | In the case of Zsh, it's lower-cased pipestatus). | ||
+ | |||
+ | </ | ||
+ | |||
+ | Say you want the exit status of grep in the following: | ||
+ | |||
+ | <code bash> | ||
+ | grep foo somelogfile | head -5 | ||
+ | status=${PIPESTATUS[0]} | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Bash 3.0 added a **pipefail** option as well, which can be used if you simply want to take action upon failure of the grep: | ||
+ | |||
+ | <code bash> | ||
+ | set -o pipefail | ||
+ | if ! grep foo somelogfile | head -5; then | ||
+ | printf "uh oh\n" | ||
+ | fi | ||
</ | </ | ||
---- | ---- | ||
bash/output/check_exit_status.1611672588.txt.gz · Last modified: 2021/01/26 14:49 by peter