#!/bin/sh
: ${blog:=~/.blog}
: ${PAGER:=less}
if [ "$#" = 0 ]; then
	$PAGER +G "$blog"
elif [ "$#" = 1 ]; then
	$PAGER +G "$blog" | grep "	$1	"
else
	type="$1" ; shift
	msg="$*"
	echo "`dtz`	$type	$msg" >>"$blog"
fi
