Skip to content

v0.5.5

Choose a tag to compare

@ryuichiueda ryuichiueda released this 20 Jul 06:06
· 2559 commits to main since this release

Supported pipefail

### The exit status of true remains when the pipefail is off. ###
🍣 set -o
pipefail        off
🍣 false | true
🍣 echo $?
0
🍣 set -o pipefail
### The exit status of the rightmost failed command remains when the pipefail is on. ###
🍣 set -o
pipefail        on
🍣 false | true 
🍣 echo $?
1