Log Parse in Windows without Log Parser

Using the command line to parse through the logs is an alternate method to log parser. A benefit that this would serve over log parser is that this method will also parse Apache logs.

Here is an example for parsing all logs in a specific folder for a specific IP address and writing to a new file called loglist.txt.

type *.log | find "10.10.10.10" > loglist.txt