ArchLUG Linux By Example - www.archlug.org

Download the RSS XML Feed for this site

Subscribe to this channel with Amphetadesk

Subscribe to this channel with RadioUserland

LBE- ps


Examples of the "ps" Command

List 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

Valid XHTML 1.0! Valid CSS!