I have the below files in directory new
:
Dec 14 04:35 New_folder
Dec 13 05:50 abc.sh
Dec 13 06:33 ashutosh.txt
Dec 13 06:40 delete.sh
Dec 13 07:19 test.bat
Dec 14 04:44 test.sh
Dec 14 04:30 xyz.sh
And running the below command
find /test/new/ -type f -mtime +1
According to definition of this command I will get all files which are older than one day, on 14 Dec when I am running, but I am not getting any file in the output.
What is a command line that works?