You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All tools use a POSIX compliant shell (/bin/sh) as the command interpreter. The POSIX standard lacks a very useful bash feature: set -o pipefail. That makes a pipe fail if any of its commands fail. OTOH, the POSIX standard states that the pipe's exit code shall be that of the rightmost command. This seems inconsistent if any of the other commands [in the pipeline] fail.
The text was updated successfully, but these errors were encountered:
All tools use a POSIX compliant shell (
/bin/sh
) as the command interpreter. The POSIX standard lacks a very usefulbash
feature:set -o pipefail
. That makes a pipe fail if any of its commands fail. OTOH, the POSIX standard states that the pipe's exit code shall be that of the rightmost command. This seems inconsistent if any of the other commands [in the pipeline] fail.The text was updated successfully, but these errors were encountered: