diff options
author | Judd Vinet <judd@archlinux.org> | 2002-06-26 18:59:49 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2002-06-26 18:59:49 +0000 |
commit | 3a035c17142e854afc355082cd5344821b27235e (patch) | |
tree | c8f7ac7b45bec592ea872ca15c6ceb6c0531b289 /genpkglist | |
parent | 660ea7e41b092ce286bcda9d4a6fcae105d98da7 (diff) |
Added cvs tags to scripts
Added pacsync_update to scripts
Added ftpmaint to scripts
Diffstat (limited to 'genpkglist')
-rwxr-xr-x | genpkglist | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |