|
you'll need to download the page with 'wget' then parse it using 'egrep' and regular expressions or so, check the man pages of these two programs to learn about them.
I think the regex will look something like this, but don't quote me because i could be wrong
s/<a href="(.*)">(.*)</a>/
now $1 will be the linked page, and $2 the title of the link.
-Dizz
|