Sophie

Sophie

distrib > * > 2009.0 > i586 > by-pkgid > 14e99e777038dd8c1c2308be68fedb83 > files > 76

maradns-1.3.07.09-2mdv2009.0.i586.rpm

#!/bin/bash

# Since the twerps at Sourceforge not longer allow directory indexes,
# this script makes them for me.

for dir in `find . -type d` ; do
	cd $dir
	ls -l | grep -v '^total' | \
           perl -pe 's/([\w\.\-]+)$/<A href=$1>$1<\/A><BR>/' > index.html
	cd ~-
done