summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgenpkglist11
1 files changed, 11 insertions, 0 deletions
diff --git a/genpkglist b/genpkglist
index 21e18d0..94a9336 100755
--- a/genpkglist
+++ b/genpkglist
@@ -1,7 +1,18 @@
#!/bin/bash
+# $Id: genpkglist,v 1.4 2002/06/26 18:59:49 judd Exp $
tl=`pwd`
+cat >packages.txt <<_EOF
+<table>
+ <tr>
+ <th>Package</th>
+ <th>Version</th>
+ <th>Collection</th>
+ <th>Description</th>
+ </tr>
+_EOF
+
for category in `find * -type d -maxdepth 0 | grep -v CVS`; do
echo $category >>packages.txt
for pkg in `ls $category | sort`; do