#!/bin/sh set -euo pipefail EXITCODE="${1:-}" shift eval "$(assert-arg -- "$EXITCODE" 'EXITCODE')" "$@" ||: exit "$EXITCODE"