-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
43 lines (30 loc) · 1.19 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
NAME
awstats-cd - generate per-domain summary from awstats files
SYNOPSIS
awstats-cd [options] [FILE...]
DESCRIPTION
Awstats-cd make static html pages with some basic statistics about
multiple domains. Optionally it can also create XLS (Excel) files.
FILE SELECTION
All files should be passed at once on command line. Some examples:
awstats-cd /var/lib/awstats/awstats012010*.txt >2010_01.html
find /var/lib/awstats/ -type f -name 'awstats..2010\.txt' -print0 \
| xargs -r0 awstats-cd >index.html
OPTIONS
--title
Change page title. Default is 'AWStats Totals'
--length=NUMBER
Show NUMBER of domains on html page (default 20).
--sort_by=FIELD
Sort statistics by field. Available: unique, visits, pages, hits and
(default) bandwidth.
--no-html
Disable html output.
--xls=FILENAME
Write XLS (Excel) file with statistics. Requires
Spreadsheet::WriteExcel installed on system.
--help
Show this help message.
COPYRIGHT & LICENSE
Copyright 2010 Rafał Kupka This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.