Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
How to find out the file by hour
Name: jds Date: May 5, 2008 at 11:35:14 Pacific OS: XP CPU/Ram: 1000 Product: HP
Comment:
Hi, I am trying to find out the file which over 1 hour ( or 30 min, or 30 seconds) I know how to find out the files by day using mtime find . -mtime -1 -name "myfile" -exec ls {} \; and I know there is also an option for -mmin BUT unfortunately this option doesn't work in my server Can anyone show me how to find out the file by hour/min/second? Thanks in advance
Probably the best solution is to create a file with the unix touch command, and then use the find command's -newer option. The following link describes how to use it:
Summary: I found zombie process runnig on my workstation. But How I can find the root cause for these processes? Is it writes any log file? I know this is becuase of fork but I want to find out the exact cause...
Summary: I want to find out the week number of the day in a month. (Didn't get it? - example, if today is the saturday then whether it is first saturday or second or third of the month.) As far as I know ther...