List processes after CPU usage
$> ps waux –sort=-pcpu If you piped the result into the head command, you can limit the result to the n entries with the highest CPU usage. $> ps waux –sort=-pcpu | head -n 10 In this example you will see the ten most CPU-consuming processes on the machine. The ‘–‘ before pcpu results in […]