Working in Linux you need to find files changed in dates range.
To find these files I am using set of commands below:
1. Create file stamp with date range begin:
$ touch –date "2012-11-01" ~/tmp/2012-11-01.txt
2. Create file stamp with date range end:
$ touch –date "2012-11-10" ~/tmp/2012-11-10.txt
3. Find all files in user home directory changed in dates range:
$ find ~ -type f -newer ~/tmp/2012-11-01.txt -not -newer ~/tmp/2012-11-10.txt