Git/suuid/: New commits
[sunny256-utils.git] / httplog
blobd9945a554aa208b0dbe8df8e0cf7b5eaa52e33df
1 #!/usr/bin/env bash
3 #=======================================================================
4 # httplog
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 #=======================================================================
14 progname=httplog
15 VERSION=0.2.0
17 ARGS="$(getopt -o "\
21 " -l "\
22 help,\
23 quiet,\
24 verbose,\
25 version,\
26 " -n "$progname" -- "$@")"
27 test "$?" = "0" || exit 1
28 eval set -- "$ARGS"
30 opt_help=0
31 opt_quiet=0
32 opt_verbose=0
33 while :; do
34 case "$1" in
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 ;;
39 --) shift; break ;;
40 *) echo $progname: Internal error >&2; exit 1 ;;
41 esac
42 done
43 opt_verbose=$(($opt_verbose - $opt_quiet))
45 if test "$opt_help" = "1"; then
46 test $opt_verbose -gt 0 && { echo; echo $progname $VERSION; }
47 cat <<END
49 Usage: $progname [options]
51 Options:
53 -h, --help
54 Show this help.
55 -q, --quiet
56 Be more quiet. Can be repeated to increase silence.
57 -v, --verbose
58 Increase level of verbosity. Can be repeated.
59 --version
60 Print version information.
62 END
63 exit 0
66 cd /var/log/apache2 &&
67 ./update-db &&
68 psql httplog