Назад | Перейти на главную страницу

Результат AWStats в одном файле html?

AWStats (awstats_buildstaticpages.pl) генерирует множество HTML-файлов, например

 awstats.mysite.alldomains.html
 awstats.mysite.allhosts.html
 awstats.mysite.allrobots.html
 awstats.mysite.browserdetail.html
 awstats.mysite.errors404.html
 awstats.mysite.html
 awstats.mysite.keyphrases.html
 awstats.mysite.keywords.html
 awstats.mysite.lasthosts.html
 awstats.mysite.lastrobots.html
 awstats.mysite.osdetail.html
 awstats.mysite.refererpages.html
 awstats.mysite.refererse.html
 awstats.mysite.session.html
 awstats.mysite.unknownbrowser.html
 awstats.mysite.unknownip.html
 awstats.mysite.unknownos.html
 awstats.mysite.urldetail.html
 awstats.mysite.urlentry.html
 awstats.mysite.urlexit.html

Есть ли возможность вывода в виде одного большого html вместо 20 html файлов?

РЕДАКТИРОВАТЬ: В принципе, я хочу awstats_buildstaticpages.pl для вывода одного html вместо множества html файлов.

ОБНОВИТЬ

Есть ли способ объединить все отчеты html в один html?

cat может это сделать:

$ cat awstats.mysite.*.html > awstats.mysite.html

Просто используйте -output:

perl awstats.pl -config=mysite -output -staticlinks > awstats.mysite.html

вместо того -output=x:

perl awstats.pl -config=mysite -output=alldomains -staticlinks > awstats.mysite.alldomains.html
perl awstats.pl -config=mysite -output=allhosts -staticlinks > awstats.mysite.allhosts.html