TOP Command
Some tips about top command
For MacOS, the useful commands are
- sort according to memory:
top -o mreg - sort according to execution time:
top -o time - sort according to CPU usage (this is default):
top -o cpu - sort according to the number of threads running:
top -o threads - sort according to the corresponding user name:
top -o user - show only N (a number) processes:
top -n N - show only one process:
top -pid PIDNUMBER(where on linux this should betop -p PIDNUMBER)
For more options, top -h will help.
htop is a great replacement for top, with build in easy sort, graphical representation etc.
Planted:
by Lei Ma;
Similar Articles:
L Ma (2016). 'TOP Command', Datumorphism, 07 April. Available at: https://datumorphism.leima.is/til/programming/top/.