Does anyone know how to modify this command to cover a range in the seconds field. Let's say over a 5 second range. A better command would of course be appreciated.
sudo find . -type f -print0 | xargs -0 sh -c 'for i in "$@"; do if stat "$i" | grep -q "^Modify: 2009-05-25 16:39:43.000000000"; then echo "$i"; fi; done'
Note I want to be able to enter any date and time as the starting point (not a relative date as in mtime).