in the server contain a large log file. i want to achieve recently 5 days log data. here is part of log file
Sat Jun 2 03:32:13 2012 [pid 12461] CONNECT: Client "66.249.68.236"
Sat Jun 2 03:32:13 2012 [pid 12460] [ftp] OK LOGIN: Client "66.249.68.236", anon password "gxxglxxxxt@google.com"
Sat Jun 2 03:32:14 2012 [pid 12462] [ftp] OK DOWNLOAD: Client "66.249.68.236", "/pub/10.5524/100001_101000/100022/readme.txt", 451 bytes, 1.39Kbyte/sec
Sat Jun 2 03:32:22 2012 [pid 12677] CONNECT: Client "66.249.68.236"
Sat Jun 2 03:32:23 2012 [pid 12676] [ftp] OK LOGIN: Client "66.249.68.236", anon password "xxxxxbot@google.com"
I using the code, but it has some Syntax error in open(filename). command is python ex.py vsftp.log Can someone help me solve it. and create a new log file to save output line. Thanks
from sys import argv
import time
script, filename = argv
with open(filename) as f:
lines= [line for line in f]
def OnlyRecent(line):
return time.strptime(line.split("[")[0].strip(),"%a %b %d %H:%M:%S %Y") <(time.time()-(60*60*24*5))
print "\n".join(filter(OnlyRecent,lines))
but when i using code , it can work? why from sys import argv
script, filename = argv
txt = open(filename)
print "Here's your file %r:" % filename
print txt.read()
when i create ex.py file
f =open('/opt/CLiMB/Storage1/log/vsftp.log','r')
print f.readline
type python ex.py
It shows built-in method readline of file object at 0x... How to solve it. Thanks