#!/usr/bin/env bash set -eau -o pipefail rc=0 # false | false || rc="${PIPESTATUS[@]}" out=$(echo toto && false) || rc=2 echo $out echo $? echo $rc