Moritz Kraus
2 years
Florian Heinle
2 years
Florian Heinle
3 years
Claus-Theodor Riegg
3 years
Claus-Theodor Riegg
3 years
Andreas Vöst
3 years
Claus-Theodor Riegg
8 years
Claus-Theodor Riegg
8 years

Bash: Find out the exit codes of all piped commands

Updated . Posted . Visible to the public.

Bash stores the exitcodestatus of piped commands in the environment variable PIPESTATUS

So you can just echo ${PIPESTATUS[@]} to get them all.

13:52:30 ✔ claus:~$ ps ax | grep /usr/bin/ruby
13205 pts/20   S+     0:00 grep --color=auto /usr/bin/ruby


13:52:43 ✔ claus:~$ echo ${PIPESTATUS[@]}
0 0

PIPESTATUS is an array, so you can get the exitcode of an specific command (first pipe):

13:54:20 ✔ claus:~$ echo ${PIPESTATUS[1]}
0
Claus-Theodor Riegg
Last edit
Claus-Theodor Riegg
Keywords
ops
License
Source code in this card is licensed under the MIT License.