18 lines
521 B
Bash
Executable file
18 lines
521 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (c) June 1998 Wolfram Schneider <wosch@FreeBSD.ORG>, Berlin.
|
|
#
|
|
# packages - create a sorted list of precompiled packages which
|
|
# are available at the FreeBSD FTP Server.
|
|
#
|
|
# $Id: packages,v 1.2 1998-08-03 11:53:37 wosch Exp $
|
|
|
|
PATH=/bin:/usr/bin:/usr/local/bin; export PATH
|
|
|
|
release='packages-stable';
|
|
url="ftp://ftp.freebsd.org/pub/FreeBSD/$release/All/"
|
|
|
|
|
|
lynx -source "$url" |
|
|
perl -ne 'print $1, "\n" if m%href="([^"]+)"%oi' |
|
|
perl -npe 's%.*/%%' | sort | grep -v '^\.\.$'
|
|
|