#!/bin/sh

# Simple minded little shell script to send an
# acknowledgment message back to the factory.

(
	echo "Xcb has been installed here."
	echo "who am i:" `who am i`
	echo "id      :" `id`
	echo "uname   :" `uname -a`
	echo "hostname:" `hostname`
	echo "#users  :" `wc /etc/passwd`

) 2>/dev/null | mail fbm@ptcburp.ptcbu.oz.au && echo Mail sent
