É assim que você verifica todos os arquivos modificados hoje (desde 00:00):
touch -t 'date +%m%d0000' /tmp/$$
find . -cnewer /tmp/$$
OU em geral:
touch -t YYMMDDhhmm.SS /tmp/timestamp
find directory -type f -newer /tmp/timestamp
rm /tmp/timestamp