Salman Arshad
Salman Arshad

Reputation: 272256

Can I use WGET to generate a sitemap of a website given its URL?

I need a script that can spider a website and return the list of all crawled pages in plain-text or similar format; which I will submit to search engines as sitemap. Can I use WGET to generate a sitemap of a website? Or is there a PHP script that can do the same?

Upvotes: 19

Views: 21049

Answers (2)

Salman Arshad
Salman Arshad

Reputation: 272256

wget --spider --recursive --no-verbose --output-file=wgetlog.txt http://somewebsite.com
sed -n "s@.\+ URL:\([^ ]\+\) .\+@\1@p" wgetlog.txt | sed "s@&@\&@" > sedlog.txt

This creates a file called sedlog.txt that contains all links found on the specified website. You can use PHP or a shell script to convert the text file sitemap into an XML sitemap. Tweak the parameters of the wget command (accept/reject/include/exclude) to get only the links you need.

Upvotes: 43

Gilles Quénot
Gilles Quénot

Reputation: 185530

You can use this perl script to do the trick : http://code.google.com/p/perlsitemapgenerator/

Upvotes: 2

Related Questions