: where -- search the unix manual table of contents for a given pattern

manualtoc=/usr/man/man0/tocx?

case $# in 
	1)	;;
	*)	echo "usage: where pattern"
		;;
esac
cat $manualtoc ^ grep -y $1
