I need to find several files that were made within a certain date and contain certain text. Clearly I'm making a pig's ear out of it, but my first thoughts were something like this....
find ./ -iname "*.server" -mtime -19 | grep -H "string"
Advice would be more than welcome...
find ./ -iname "*.server" -mtime -19 | grep -H "string"
Advice would be more than welcome...