blob: 51bb8223aa3f9912667dd2078df410544ccecbfd [file] [log] [blame]
Than McIntosh645c7752018-01-22 13:58:39 -05001#!/bin/sh
2TORUN=$1
3if [ -z "$TORUN" ]; then
4 echo "error: no script specified"
5 exit 1
6fi
7shift
8OUTFILE=$1
9if [ -z "$OUTFILE" ]; then
10 echo "error: no outfile specified"
11 exit 1
12fi
13shift
14ARGS=$*
15if [ -z "$SHELL" ]; then
16 echo "error: no SHELL setting"
17 exit 1
18fi
19exec ${SHELL} -e ${TORUN} ${ARGS} > ${OUTFILE}