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 e

⟦4a3871078⟧ TextFile

    Length: 618 (0x26a)
    Types: TextFile
    Names: »extract.sh«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/util/extract.sh« 
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦e83f91978⟧ »EurOpenD22/isode/osimis-2.0.tar.Z« 
        └─⟦d846658bd⟧ 
            └─⟦this⟧ »osimis/misode/util/extract.sh« 
└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/util/extract.sh« 

TextFile

: run this script throuh /bin/sh

# A script to pre-process files.
# a bit like ifdef in C compiler - but simpler.
# The idea is you put lines like
# %BEGIN(DEF)%
# %END(DEF)%
# in your file, this script will keep things enclosed in these
# whilst deleting all others.

case $# in
	0)	echo "$0: Usage: $0 Definition [Defs...]" 1>&2; exit 1;;
esac

tfile=/tmp/extr.$$
trap "rm -f $tfile;exit" 1 2 15

echo	'/%WARNING%/s//This file produced automatically, do not edit!/' > $tfile
for i
do
	echo "/%BEGIN($i)%/d"
	echo "/%END($i)%/d"
done >> $tfile

echo "/%BEGIN(.*)%/,/%END(.*)%/d" >> $tfile
sed -f $tfile
rm -f $tfile