Roy Schestowitz wrote:
>> If you own the site, use ls.
>
> ls -la -R >tmp; wc tmp
>
> Would give a quick approximation.
I use
find -type f -name "*.html" -print
in case I have to recurse (find all files that end in .html)
find -type f -name "*.html" -print | wc -l
gives the count, note no need for a tmp file, and the -l (count lines)
option for wc
This only works if your site is static of course :-D.
--
John Perl SEO tools: http://johnbokma.com/perl/
Experienced (web) developer: http://castleamber.com/
Get a SEO report of your site for just 100 USD:
http://johnbokma.com/websitedesign/seo-expert-help.html
|
|