unix - "find command -mtime 0" not getting the file i expect - Stack Overflow
I am trying to find a file that are 0 days old. Below are the steps I performed to test this $ ls $ ls -ltr total 0 $ touch tmp.txt $ ls -ltr total 0 -rw-r----- 1 tstUser tstUser 0 Feb 28 20:02 tmp.txt $ find * -mtime 0 $ $ find * -mtime -1 tmp.txt $ Why ...