#!/bin/sh
# Runs a command, copying stderr to the TTY
# Usage: self command args...
"$@" 3>&2 2>&1 1>&3|tee /dev/tty 3>&2 2>&1 1>&3