doc/es/ports/packages
1999-02-08 19:38:01 +00:00

18 lines
532 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 1999-02-08 19:38:01 wosch Exp $
PATH=/bin:/usr/bin:/usr/local/bin; export PATH
release='packages-stable';
url="ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/$release/All/"
lynx -source "$url" |
perl -ne 'print $1, "\n" if m%href="([^"]+)"%oi' |
perl -npe 's%.*/%%' | sort | grep -v '^\.\.$'