]> git.ipfire.org Git - thirdparty/sarg.git/blobdiff - usage.c
Perform the user's ID processing in one function
[thirdparty/sarg.git] / usage.c
diff --git a/usage.c b/usage.c
index e7337ca0f8e0694ada4e5fe811bec01bb56f6243..25c2ff332934a51abf35cee04d747aa9c24a96ec 100644 (file)
--- a/usage.c
+++ b/usage.c
@@ -1,6 +1,6 @@
 /*
  * SARG Squid Analysis Report Generator      http://sarg.sourceforge.net
- *                                                            1998, 2010
+ *                                                            1998, 2015
  *
  * SARG donations:
  *      please look at http://sarg.sourceforge.net/donations.php
 
 void usage(const char *prog)
 {
-  printf(_("Usage: %s [options...]\n"), prog);
-  puts  (_("     -a Hostname or IP address"));
-  puts  (_("     -b Useragent log"));
-  puts  (_("     -c Exclude file"));
-  puts  (_("     -d Date from-until dd/mm/yyyy-dd/mm/yyyy"));
-  puts  (_("     -e Email address to send reports (stdout for console)"));
-  printf(_("     -f Config file (%s/sarg.conf)\n"),SYSCONFDIR);
-  puts  (_("     -g Date format [e=Europe -> dd/mm/yyyy, u=USA -> mm/dd/yyyy]"));
-  puts  (_("     -h This help"));
-  puts  (_("     -i Reports by user and IP address"));
-  puts  (_("     -l Input log"));
-  puts  (_("     -n Resolve IP Address"));
-  puts  (_("     -o Output dir"));
-  puts  (_("     -p Use Ip Address instead of userid (reports)"));
-  puts  (_("     -s Accessed site [Eg. www.microsoft.com, www.netscape.com]"));
-  puts  (_("     -t Time [HH, HH:MM]"));
-  puts  (_("     -u User"));
-  puts  (_("     -w Temporary dir"));
-  puts  (_("     -x Debug messages"));
-  puts  (_("     -z Process messages"));
-  puts  (_("     -convert Convert the access.log file to a legible date"));
-  puts  (_("     -split Split the log file by date in -d parameter"));
-  printf("\n\t%s-%s\n",PGM,VERSION);
-  puts  ("\thttp://sarg.sourceforge.net");
-  puts  (_("\n\tPlease donate to the sarg project:"));
-  puts  ("\t\thttp://sarg.sourceforge.net/donations.php\n");
+       printf(_("Usage: %s [options...]\n"), prog);
+       puts  (_("     -a NAME|IP     Create report for host name or IP address"));
+       //puts  (_("     -b Useragent log"));
+       puts  (_("     -c FILE        Exclude connected hosts from the report"));
+       puts  (_("     --convert      Convert the access.log file to a legible date"));
+       puts  (_("     --css          Output the internal CSS"));
+       puts  (_("     -d DATE        Date range to include in the report: from-until dd/mm/yyyy-dd/mm/yyyy"));
+       puts  (_("     -e MAIL        Email address to send reports to (stdout for console)"));
+       printf(_("     -f FILE        Config file to read (default is %s/sarg.conf)\n"),SYSCONFDIR);
+       puts  (_("     -g FMT         Date format [e=Europe -> dd/mm/yyyy, u=USA -> mm/dd/yyyy]"));
+       puts  (_("     -h             This help"));
+       puts  (_("     --help         This help"));
+       puts  (_("     -i             Reports by user and IP address"));
+       puts  (_("     --keeplogs     Keep every previously generated report"));
+       puts  (_("     -l FILE        Input log"));
+       puts  (_("     --lastlog      Set the number of previous reports to keep"));
+       puts  (_("     -m             Advanced process messages"));
+       puts  (_("     -n             Resolve IP addresses using RDNS"));
+       puts  (_("     -o DIR         Report output directory"));
+       puts  (_("     -p             Use Ip Address instead of userid (reports)"));
+       puts  (_("     -P PREFIX      Prepend a prefix to the splitted file names"));
+       puts  (_("     -s SITE        Limit report to accessed site [eg. www.microsoft.com]"));
+       puts  (_("     --split        Split the log file by date in -d parameter"));
+       puts  (_("     --splitprefix PREFIX\n"
+                "                    Prepend a prefix to the splitted file names"));
+       puts  (_("     --statistics   Print run time statistics"));
+       puts  (_("     -t TIME        Limit report to time range [HH:MM or HH:MM-HH:MM]"));
+       puts  (_("     -u USER        Report only that user's activity"));
+       puts  (_("     -w DIR         Temporary directory"));
+       puts  (_("     -x             Debug messages"));
+       puts  (_("     -z             Process messages"));
+       printf("\n\t%s-%s\n",PGM,VERSION);
+       puts  ("\thttp://sarg.sourceforge.net");
+       /*puts  (_("\n\tPlease donate to the sarg project:"));
+       puts  ("\t\thttp://sarg.sourceforge.net/donations.php\n");*/
 
-  return;
+       return;
 }