DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T s

⟦2882675fd⟧ TextFile

    Length: 522 (0x20a)
    Types: TextFile
    Names: »sscan«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦3658e588a⟧ »EurOpenD3/mail/mh/mh-6.7.tar.Z« 
        └─⟦c75e36ecb⟧ 
            └─⟦this⟧ »mh-6.7/miscellany/mtrenv/bin/sscan« 

TextFile

: run this script through /bin/sh

if mhpath all > /dev/null; then true; else exit 1; fi

if [ "x$1" = x ]; then
    S=`scan -format %subject first`
    if [ "x$S" = x ]; then mark -add -zero -sequence select first; fi
else
    S="$1"
fi

if [ "x$2" != x ]; then echo 'usage: sscan [subject]' 1>&2; exit 1; fi

if [ "x$S" != x ]; then
    S=`echo $S | tr A-Z a-z | sed -e 's%^re:%%' | sed -e 's%^[ 	]*%%'` 
    if pick -subject "$S" -zero -sequence select; then true; else exit 1; fi
fi

sortm select; scan select

exit 0