----- Original Message -----From: Paul Hartman Date: Thursday, June 2, 2011
12:41 pmSubject: Re: [gentoo-user] OT: website designTo:
gentoo-user@lists.gentoo.org> On Thu, Jun 2, 2011 at 11:18 AM, Peter Humphrey>
wrote:> > Hello list,> >> > Off-topic, I know (sorry)!, but I hope someone will
have an answer.> >> > Are there any mapping tools for Linux that can be given a
URL > and produce a> > diagram showing all the internal connections (links)
between > its pages?> > I don't know of an all-in-one to do that, but you can
probably > use a> tool that spiders a website to get all of the page >
relationships, then> run it through graphviz to make it look pretty.> >Try lynx
or maybe wget they have a lot of options. lynx may be your best bet since
wget downloads the files and that's probably not what you want. However, you
may be able to get what you want with wget.With lynx you may be able to use
something like the following.lynx -crawl -traversal -dump
-listonly http://www.yahoo.comYou'll need to play around with the options.