> 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

