I have a set of multiple log files and i want to search specific strings from those multiple log files between time period say July to October 2015. Please note there are multiple log files for each month like,
test.log.2015-07-01.1
test.log.2015-07-01.2
test.log.2015-07-01.3
test.log.2015-10-31.4
test.log.2015-12-01.5
test.log.2016-02-28.6
and so on...
Now I am looking for usage log between July-2015 to October-2015 only.
Currently, I am using below grep command.
grep -E 'importcoursecustomization|importnoncoursecustomization' test1.log.2015-07-01
How do I use this and search for multiple strings for usage log between July-2015 to October-2015 only?