#!/bin/sh
# By Dwayne C. Litzenberger <dlitz@dlitz.net>
# Released into the public domain on 2003-June-03
tf=`tempfile`	# Create the temporary file
cat >"$tf"	# Save to the temporary file
exec <"$tf"	# Redirect stdin from the temporary file
rm -f "$tf"	# Delete the directory entry for the temporary file
exec "$@"	# Execute the program (using the temporary file as stdin)
