Hey champs,
i am using the following commands to search 1day files available under a dir by shell script.
find <dirname> -type f -mtime +1
sometimes it used to show me correct results.....but sometimes it's not ???
if the above one not working perfect i.e. not showing me the exact files .
then i used to issue the following one,
find <dirname> -type f -mtime 1
surprisingly it works fine ........
SO can anyone help me why so strange is happening??? and how can i get the exact file name
under certain dir of 1day older.....