#!/bin/sh
# This is a simple script to move the current mail over
# to an mbox-* file, and fire up the mail reader on that
# file.  I find it useful ...

#DT=`date -u +%Y%m%d`
DT=`date +%Y%m%d`
MB=$HOME/mbox-$DT

if cat $MAIL >>$MB
then zap $MAIL
fi

Mail -f $MB

