The question: Can you make a command line that finds the string abcdefg in all files modified between
2007-09-23 07:00 and 2007-09-24 01:00?
And of course I can:
find . -daystart -mmin -$(echo $(date +"%s" -d"$(date +"%Y-%m-%d 0:00)") $(date +"%s" -d"2007-09-23 7:00") - 60 / 1440 + p | dc) -mmin +$(echo $(date +"%s" -d"$(date +"%Y-%m-%d 0:00)") $(date +"%s" -d"2007-09-24 01:00") - 60 / 1440 + p | dc) -exec grep -H abcdefg {} \;