Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > by-pkgid > 97f75e9940e57f2bde7b60c25f8c29b7 > files > 81

maradns-1.4.06-2.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