Created
February 20, 2016 04:26
-
-
Save 13Cubed/97e9ac0eda61ff3db494 to your computer and use it in GitHub Desktop.
Use RegEx (Regular Expressions) to search through files for specific text.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys | |
import re | |
def ParseLog(filename, search_string): | |
try: | |
f = open(filename, 'rU') | |
except IOError: | |
print '\n*** I/O Error: Can\'t read file', filename, '***\n' | |
return | |
lines = f.readlines() | |
for line in lines: | |
result = re.search(search_string, line) | |
if result: | |
print line, | |
f.close() | |
return | |
def main(): | |
if len(sys.argv) < 2: | |
print 'usage: ./checklog filename1 filename2 filename3 ...' | |
sys.exit(0) | |
args = sys.argv | |
args.remove(sys.argv[0]) | |
search_string = raw_input('\nPlease enter RegEx search string: ') | |
for arg in args: | |
ParseLog(arg, search_string) | |
print '\nCopyright (C) 2011 13Cubed. All rights reserved.' | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment