Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does www mean in ps auxwww?

I found that ps aux lists processes that are currently running and I found other people mentioning ps auxwww . I am wondering what this means? or what it does? What's the difference between ps aux and ps auxwww ?

like image 324
nrmb Avatar asked Sep 04 '17 08:09

nrmb


2 Answers

To quote the man page (on Mac OS, other systems will vary slightly, but the idea is the same):

-w
Use 132 columns to display information, instead of the default which is your window size. If the -w option is specified more than once, ps will use as many columns as necessary without regard for your window size. When output is not to a terminal, an unlimited number of columns are always used.

like image 119
Thilo Avatar answered Nov 22 '22 05:11

Thilo


ps auxwww is useful when you have a lot of data (how many columns you want)

like image 30
mPod Avatar answered Nov 22 '22 06:11

mPod