find every file modified between to dates
the following will find every file changed between 2 timestamps
touch temp -t 200910011130touch ntemp -t 200910011630find / -cnewer temp -and ! -cnewer ntemp
touch temp -t 200910011130touch ntemp -t 200910011630find / -cnewer temp -and ! -cnewer ntemp