H='
==========
klu
==========
shows the last ten users of Bibliofile.  removes
references to maintenance account (cck)
==========
RELATED
==========
ksysusage
==========
'
case $1 in 
    -h|help|hint)   clear;echo "$H";exit 0;;
esac
U=$PUBKIN/USAGE/bibluser.log
S=/usr/tmp/barf$$
trap '/bin/rm -f $S;exit' 0 1 2 3 4 14
case $USER in
    cck)    sed -e "/cck/d" $U >$S;mv $S $U;chmod 777 $U;;
    *)      ;;
esac
tail -10 $U
