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

⟦0729391e6⟧ TextFile

    Length: 401 (0x191)
    Types: TextFile
    Names: »isologs.sh«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.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 >/dev/null 2>&1
	x=$y
    done

    mv $A $A-0 >/dev/null 2>&1

    > $A
    chmod 666 $A
done

exit 0