Initial commit
commit
6156db5d46
@ -0,0 +1,9 @@
|
||||
import re, argparse, os
|
||||
|
||||
parser = argparse.ArgumentParser(description='Parse a lighttpd access log.')
|
||||
|
||||
parser.add_argument('logfile', metavar='logfile', type=str, nargs='+',
|
||||
help='path(s) of the logfile(s)')
|
||||
|
||||
args = parser.parse_args()
|
||||
options = vars(args)
|
Loading…
Reference in New Issue