H='
=========
kawk -h?
=========
-h      interactive commands
-h0     everything below
-h1     list of functions
-h2     explanation of functions
-h3     language summary
-h4     documentation
=========
'
case    $1  in
    -h0)    more $PUBKIN/MAN/kahint.?;ksysdoc kawk;exit 0;;
    -h1)    more $PUBKIN/MAN/kahint.1;exit 0;;
    -h2)    more $PUBKIN/MAN/kahint.2;exit 0;;
    -h3)    more $PUBKIN/MAN/kahint.3;exit 0;;
    -h4)    ksysdoc kawk;exit 0;;
    -h|help|hint)   clear;echo "$H";sleep 10;
					khint kawk;clear;echo "$H";
					exit 0;;
	-F)		XX=$FX;;
esac
exec kawk.x "$KAWK" "$@"
