#!/bin/sh
# Run my arguments, pausing at the end if there's an error.

CMD="$*"

echo "Running command $CMD"
($CMD && sleep 1) || (echo "COMMAND FAILED (press Return)"; read REPLY)

