Axione-IPE-Viewer/data-ingest/i

13 lines
153 B
Plaintext
Raw Normal View History

#!/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