#!/bin/sh -
#
#	This proves that exec 2>&1 is really thorough; i.e. even a later [1]>&2
#	still comes out on 1 (i.e. on standard output, not error).
#
exec 2>&1

echo "Here's an error message ostensibly sent to standard error." >&2
exit 1
