N=$PUBKIN/MAN/news.new
H='
========
knews
========
lists the latest changes in Bibliofile status on
a last in first out basis
========
'
case $1 in 
    -h|help|hint)   clear;echo "$H";exit 0;;
esac
if test -t 0
then
more $N
else
pr -t $N
fi
