How can I find started processed within last 5 hours? Can ps do that?

I have to use ps -ef | grep <username> which shows all process for . Then I have to manually look at STIME columns

link|improve this question

feedback

3 Answers

maybe this helps you:

do a ps -aef. this will show you the time at which the process started. Then using the date command find the current time. Calculate the difference between the two to find the age of the process.

credit goes to: How do you find the age of a long-running Linux process?

link|improve this answer
feedback

ps -eo etime,pid will list all PIDs together with the elapsed time since the process creation in the format [[DD-]hh:]mm:ss. This may come in handy as you can then search for time amounts less than 5:00:00 instead of performing trickier date comparisons.

link|improve this answer
feedback

stat -t /proc/<pid> | awk '{print $14}'

will give you the start time of a process in seconds since the epoch. Compare with current time (date +%s) to find the age of a process in seconds.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.