Self Study Always
Think before you type.
With great power comes great responsibility.
IF you don´t take control of your data, someone else Will.
The only Way to Stop a Hacker is to think like One
To gain knowledge there is no shortcut
13 March 2013
Python match|search Example
## python2.7
import re
mess = open("/var/log/messages", "r")
for line in mess:
if re.match("(.*)(U|u)sb(.*)", line):
print line,
''' Print the line that have a word Usb or usb ; ) '''
No comments:
Post a Comment