#/bin/sh

# this script comes from the man page of echo(1) on Solaris 9

if [ "X$1" = "X-n" ]
then
	shift
	printf "%s" "$*"
else
	printf "%s\n" "$*"
fi
