#!/bin/sh echo "Content-type: text/html" echo "" MANPATH=/usr/man:/usr/local/man:/opt/cs/man:/usr/share/man:/usr/share/catman export MANPATH echo "

Online manual lookup

" echo "By Krishnan Pillaipakkamnatt" if [ "$QUERY_STRING" != "" ]; then echo '
' echo "

If this is not the command that you're looking for, you might" echo "want to try the keywords search page.

" echo '

'
man "$QUERY_STRING" | sed -e 's/_<<<\1<\/b>/g' -e 's/<<<\1<\/em>/g' -e 's/_\(.\)/\1<\/U>/g' -e 's/<\/em>//g' -e 's/<\/b>//g' -e 's/<\/U>//g'
echo '
' else echo "

If you don't know the exact command you want, try the keywords search page." fi