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 d

⟦7eeeb02be⟧ TextFile

    Length: 952 (0x3b8)
    Types: TextFile
    Names: »dsalist«

Derivation

└─⟦2d1937cfd⟧ Bits:30007241 EUUGD22: P.P 5.0
    └─⟦35176feda⟧ »EurOpenD22/isode/isode-6.tar.Z« 
        └─⟦de7628f85⟧ 
            └─⟦this⟧ »isode-6.0/others/quipu/uips/dish/dsalist« 

TextFile

#!/bin/sh
#Calculate unique TCP port based on PID
ppid=$$
if ( test $ppid-lt10000 )
then
	ppid=`expr $ppid + 10000`
fi
DISHPROC="127.0.0.1 $ppid"
export DISHPROC
if ( bind )
then
	echo -n
else
	exit 1
fi
moveto @
echo "Searching ROOT"
search -filter objectclass=DSA -nokey -seq dsas -nosize -nopart 
for i in `search -filter objectclass=quipunonleafobject -noname -seq x -nosize -nopart` 
do
	echo -n "Searching "
	moveto -seq x -nocheck $i -pwd
	search -filter objectclass=DSA -norel -seq dsas -nosize -nopart
	if ( search -filter objectclass=quipunonleafobject -nopart -noname -seq y -nosize > /tmp/dsalist 2>/dev/null )
	then
		for j in `cat /tmp/dsalist` 
		do 
			echo -n "Searching "
			moveto -seq y -nocheck $j -pwd
			if (search -filter objectclass=quipuDSA -norel -subtree -seq dsas -nosize -nopart >/tmp/dsalist 2>/dev/null )
			then
				cat /tmp/dsalist
			fi
		done
	fi
done
echo 
echo Summary...
squid -seq dsas
rm -f /tmp/dsalist
unbind