#!/bin/sh #ident "@(#) 1.0 combine stdin and stdout (John S. Urban)" export COMMAND COMMAND=$* ( exec 2>&1 $COMMAND ) 2>&1 exit