Se você está no GNU / Linux, algo assim deveria fazer, por exemplo:
find / -newerct 20130409 ! -newerct 20140509
Nos sistemas BSD, você pode fazer algo assim para o mesmo efeito:
touch -t 201304090000 /tmp/mark.start
touch -t 201405090000 /tmp/mark.end
find / -newer /tmp/mark.start ! -newer /tmp/mark.end
Acho que isso também funcionará no Solaris, mas não posso testá-lo agora.