They might be there, but I don't know how to use them. Its not a cooincedence that I asked how to do it.
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Mad Scientist Sent: Tuesday, February 04, 2003 11:40 AM To: [EMAIL PROTECTED] Subject: Re: [hlds_linux] log analyzers? > I am looking for a good way to search logs to find ppl who evade bans. > So something that would match ip's to wonid's would be really nice. > Is there a tool or a way to do this? Personally, I would use a combination of grep and sort and do it on the command line. You can grep for "connected" then sort by the IP address. Use unique (I think sort -u) to remove duplicate lines and there you have it: a list of IP addresses with their WONIDs. You would also have to sed out the dates to help your unique function more cleanly. It's a Linux box - all the tools for parsing text files are already there. -Mad _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlds_linux _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlds_linux

