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.
|