|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T m
Length: 659 (0x293) Types: TextFile Names: »mem.sh«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦3658e588a⟧ »EurOpenD3/mail/mh/mh-6.7.tar.Z« └─⟦c75e36ecb⟧ └─⟦this⟧ »mh-6.7/miscellany/mem/mem.sh«
#! /bin/sh ctx=/tmp/ctx$$ trap "rm -f $ctx" 0 1 2 3 15 rm -f $ctx cp ${MHCONTEXT-`mhpath +`context} $ctx MHCONTEXT="$ctx" ; export MHCONTEXT remfolder="+reminders" printformat="%4(msg) %3(day{date}) %03(month{date}) %02(mon{mday}) %02(hour{date}):%02(min{date})%(void(hour{date}))%<(gt 11)pm%|am%>%<{date} %|*%>%{subject}%{body}" case $# in 0) while when=`promptdate` do 2>/dev/null scan `2>/dev/null pick $remfolder -after yesterday -and -before "$when"` -format "$printformat" $list done ;; *) when=`promptdate "$*"` 2>/dev/null scan `2>/dev/null pick $remfolder -after yesterday -and -before "$when"` -format "$printformat" $list ;; esac