#!/usr/bin/env bash module_name="$1" options="$2" if ./this-interpreter --variety fast --args test-$module_name $options 3>&2 > test-"$module_name.uto" 2>&1 then : else echo "$module_name failed:" 1>&2 cat "test-$module_name.uto" 1>&2 exit 1 fi