I know when you type sudo ps ax
, that list all of the running process on the system. But want to know what is ax? what ax stand for? Is that abbreviation ?
I know when you type sudo ps ax
, that list all of the running process on the system. But want to know what is ax? what ax stand for? Is that abbreviation ?
This is what the man page says:
a
x
In simpler words, option 'a' instructs 'ps' to list the processes of all users on the system rather than just those of the current user. Similarly, the 'x' option includes processes that are not running in a terminal, such as daemon processes. So that is why all the processes in the system are listed. You can also use
which is better formatted according to the user.