Difference between revisions of "Ps"

From Linuxintro
imported>ThorstenStaerk
(New page: ps is a command to list all processes. You can invoke it like this: ps ps -A ps -ef ps -auxf)
 
imported>ThorstenStaerk
Line 4: Line 4:
 
  ps -ef
 
  ps -ef
 
  ps -auxf
 
  ps -auxf
 +
 +
= See also =
 +
* [http://man-wiki.net/index.php/ps ps' man page]

Revision as of 15:13, 11 May 2009

ps is a command to list all processes. You can invoke it like this:

ps
ps -A
ps -ef
ps -auxf

See also