View Single Post
Old 03-26-2010, 06:02 PM   #18
Azure
Had an idea!
 
Azure's Avatar
 
Join Date: Oct 2005
Exp:
Default

Or I could use the grep command.

assuming the log files are at the following directory.../var/log/apache2/access.log

I should be able to go

grep subdomain access.log

and find all results in the access.log folder that have subdomain included. Which could be a lot, but I would change the 'subdomain' to something I know wouldn't be in there as a rule.

or better yet, go

grep -i subdomain access.log

and it should search everything while being case insensitive.
Azure is offline   Reply With Quote