Linux

Linux:ps -awx 對比ps -awwx

  • February 7, 2011

有誰知道的區別ps -awx vs. ps -awwx

我正在追踪一些程序,當我添加一個額外的“w”時,我看到了更多的資訊。當您發出多個“v”時,這是否像在其他情況下(例如 SSH 調試)一樣工作,輸出越“詳細”?我在手冊頁中沒有看到任何關於此的內容。

引用手冊頁(man ps):

-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.

請注意,以上內容來自 BSD 聯機幫助頁。debian 聯機幫助頁更簡潔/不太具體,但類似:

       -w              Wide output. Use this option twice for unlimited width.

開關說要使用寬輸出,-w但寬度是有限的。使用-wwsays來使用無限寬度的輸出,這樣你就可以看到一個命令的完整命令行,它可以多次包裝。添加w超過 2 的額外 s 無效。

引用自:https://serverfault.com/questions/232355