What's the difference between the following two commands. I know the output is different but what is that = sign before rss?

$ ps -orss -p 62277
   RSS
111636

$ ps -o rss= -p 62277
111636
link|improve this question

65% accept rate
feedback

1 Answer

up vote 3 down vote accepted

The -o specifies that you will be listing the columns that you want displayed. Adding an = after the column name (rss in this case), gives you the opportunity to override the default value for the column header, you could put -o rss=ResidentSet for example, but with an empty =, you are saying 'no column header'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.