Skip to content

v2.3.1

Compare
Choose a tag to compare
@ryuichiueda ryuichiueda released this 16 Jul 00:46
· 20 commits to master since this release

In this version, the indifference to PIPEFAIL is intensified.

  • version 2.3.0
$ yes aho | opy '[F1]' | head
aho
aho
aho
aho
aho
aho
aho
aho
aho
aho
Exception ignored in: <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'>
BrokenPipeError: [Errno 32] Broken pipe
$ echo ${PIPESTATUS[@]}
141 120 0
  • this version
$ yes aho | opy '[F1]' | head
aho
aho
aho
aho
aho
aho
aho
aho
aho
aho
$ echo ${PIPESTATUS[@]}
141 0 0