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

⟦81d1fa0de⟧ TextFile

    Length: 369 (0x171)
    Types: TextFile
    Names: »isologs.sh«

Derivation

└─⟦3d0c2be1b⟧ Bits:30001254 ISODE-5.0 Tape
    └─⟦eba4602b1⟧ »./isode-5.0.tar.Z« 
        └─⟦d3ac74d73⟧ 
            └─⟦this⟧ »isode-5.0/compat/isologs.sh« 

TextFile

: run this script through /bin/sh

x=`fgrep logpath @(ETCDIR)isotailor 2>/dev/null | awk '{ print $2 }'`
if [ "x$x" != x ]; then
    cd $x
else
    cd @(LOGDIR)
fi

rm -f iso.*.log ros.*.log [0-9]*.log

for A in [a-z]*.log
do
    x=2
    while [ $x -gt 0 ];
    do
	y=`expr $x - 1`
	mv $A-$y $A-$x
	x=$y
    done

    mv $A $A-0

    > $A
    chmod 666 $A
done

exit 0