Log Checker in Python Naim 08:04 #!/usr/bin/env pythonlogfile = open("/var/log/syslog", "r")for line in logfile: line_split = line.split() print line_split list = line_split[0], line_split[1], line_split[2], line_split[4] print list Learn More : Share this Share on FacebookTweet on TwitterPlus on Google+
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.