3 #=======================================================================
5 # File ID: e1cda716-5696-11e5-8516-fefdb24f8e10
7 # Update the httplog database with info from the Apache logs. One of
8 # those scripts that only works for me.
10 # Author: Øyvind A. Holm <sunny@sunbase.org>
11 # License: GNU General Public License version 2 or later.
12 #=======================================================================
26 " -n "$progname" -- "$@
")"
27 test "$?" = "0" ||
exit 1
35 -h|
--help) opt_help
=1; shift ;;
36 -q|
--quiet) opt_quiet
=$
(($opt_quiet + 1)); shift ;;
37 -v|
--verbose) opt_verbose
=$
(($opt_verbose + 1)); shift ;;
38 --version) echo $progname $VERSION; exit 0 ;;
40 *) echo $progname: Internal error
>&2; exit 1 ;;
43 opt_verbose
=$
(($opt_verbose - $opt_quiet))
45 if test "$opt_help" = "1"; then
46 test $opt_verbose -gt 0 && { echo; echo $progname $VERSION; }
49 Usage: $progname [options]
56 Be more quiet. Can be repeated to increase silence.
58 Increase level of verbosity. Can be repeated.
60 Print version information.
66 cd /var
/log
/apache2
&&