mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-21 12:57:58 +02:00
6 lines
129 B
Plaintext
6 lines
129 B
Plaintext
# with lastpipe set, exit at the end of a pipeline exits
|
|
# the calling shell
|
|
shopt -s lastpipe
|
|
exit 142 | exit 14
|
|
echo after: $?
|