diff options
| author | Wolfram Schneider <wosch@FreeBSD.org> | 1997-07-05 20:23:53 +0000 |
|---|---|---|
| committer | Wolfram Schneider <wosch@FreeBSD.org> | 1997-07-05 20:23:53 +0000 |
| commit | e95adcc783e4bbf49611acc1dbeedd8048fb1bcd (patch) | |
| tree | 6e48682f3780993fb6d1f51271fa0388943423a9 /tools | |
| parent | 1054bb1e439e2491f4f9b8c02fb0c8bb8d185bd3 (diff) | |
Notes
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/tools/portsinfo/portsinfo.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/tools/portsinfo/portsinfo.sh b/tools/tools/portsinfo/portsinfo.sh index b8a53f403c09..d4b218e09d87 100644 --- a/tools/tools/portsinfo/portsinfo.sh +++ b/tools/tools/portsinfo/portsinfo.sh @@ -3,19 +3,19 @@ # # portsinfo - Generate list of new ports for last two weeks. # -# $Id$ +# $Id: portsinfo,v 1.3 1997/05/28 19:51:20 wosch Exp wosch $ + +PATH=/bin:/usr/bin:/usr/local/bin:$PATH; export PATH url=http://www.de.freebsd.org/de/cgi/ports.cgi time='?type=new&time=2+week+ago&sektion=all' -lynx -nolist -dump "$url$time" | grep -v "Description _:_" | -perl -ne 's/_$//; s/:_ /: /; s/^(\s+)_/$1/; print if (/Main/ .. /____/)' | +lynx -nolist -dump -reload -nostatus -underscore "$url$time" | + grep -v "Description :" | +perl -ne 'print if (/Main/ .. /XX%MXX/)' | perl -ne 'if (/Main Category/) { print; for(1..50) {print "="}; print "\n"; } else { print}' -echo "This information was produced at `date -u +'%Y/%m/%d %H:%M UTC'` by" -echo "$url" - - - +echo "" +echo "This information was produced by $url" |
