#!/bin/bash set -euo pipefail # shellcheck disable=SC2153 want=$WANT # shellcheck disable=SC2153 binary=$BINARY got=$($binary) if [[ "$got" != "$want" ]]; then echo wanted: echo \ \ "$want" echo got: echo \ \ "$got" exit 1 fi