#!/bin/sh
#
# man - simple Trinux man page script
#

if [ $# -eq 0 ]
then
	echo
	echo "The following manual topics are available:"
	ls /usr/doc
else
	more /usr/doc/$*
fi
