How can i sort active processes by total process time in unix?

link|improve this question
feedback

3 Answers

I would do something like:

ps -A -o cmd,etime --sort etime

If by 'process time' you mean elapsed wall clock time of the process. Other time options are:

   j     cutime       cumulative user time
   J     cstime       cumulative system time
   k     utime        user time
link|improve this answer
feedback

If I understand you well, you can run top and press T.

link|improve this answer
feedback

You should be able to use ps Ok (O - order, k - user time), and apply selection and formatting options as needed.

link|improve this answer
See @Kyle Brandts answer, it's better and more comprehensive. – Kjetil Joergensen Mar 2 '10 at 15:37
feedback

Your Answer

 
or
required, but never shown

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