Axione-IPE-Viewer/data-ingest/i
2022-10-14 10:56:42 +02:00

13 lines
153 B
Bash
Executable file

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