Find files created yesterday (confirmation)
I am using following find command under OSXS 10.4.9:
sudo find . -atime 1 -type f ! -name '*.DS_Store' -exec ** -hs {} ';
From find's man page I deduce that '-atime 1' flag is true for all the files that have been accessed in last 24 hours, but not within last 12 hours (as the time is "rounded up to next full 24-hour period").
Is this correct, as there are a lot of files to go checking.
TIA
C.
MacBook Pro 15" 2.16GHz Intel Core 2 Duo, Mac OS X (10.5)