#!/bin/sh

# this take place before of mounting the
# real "tell" command, in the USR segment


case $# in
0)
	cat
	;;
*)
	echo "$@"
	;;
esac

# End
