Is there a way to sort ps output by process start time, so newest are either at the top or bottom ?
On Linux ?
On SysV5 ?
On Mac ?
|
Is there a way to sort ps output by process start time, so newest are either at the top or bottom ? On Linux ? On SysV5 ? On Mac ? | |||
|
feedback
|
|
This should work on Linux and SysV5
| |||
feedback
|
|
Linux:
OSX:
| |||||||
feedback
|
|
Along with the great answers above, sometimes I just want to see the top 20 offenders by process sorted descending by time, cpu% and memory usage. For that I use:
This would be on a CentOS platform, though I've enjoyed the same results on Fedora as well. Oh and for grins, I sometimes want to remove a set of processes, so I simply use a variant on the above that includes a bit of grep -v action, such as:
| |||
|
feedback
|