On Linux (and other Unix-like OS's if there's a general answer), is there an easy way to get an output similar to the time command (current real time, user, and system CPU usage totals) for a process that is still running?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Yeah, check out /proc/$PID/stat, that should have what you need. The fields are defined in man proc. Can also pull memory usage and fault information, if you care about taht.

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.