Find files modified within one hour in HP-UX
I'm searching through the manual page for find I can't see a way to run a command which will find all files modified within an hour. I can see only a way to do it for days. Rakshith Guess this should do find / -type f -mmin -60 This will be listing files starting from root and modified since the past 60 mins. the best you can do in HP-UX using the find command is to look for everything that was modified in the last 24 hours. The HP-UX find command only checks modified time in 24-hour increments. This is done by: find / -type f -mtime 1 This will list all of the filed recursively starting in