LBE- psExamples of the "ps" CommandList the processes owned by the current shell: ps List the processes owned by the init process. (All of 'em :) ps -e List all processes with all information sorted by user ps -aux Sort ps output to show memory hog processes (really three commands in a row) ps -euxf --width 45 | sort -nr -k 4 | less |
||||
|
||||