Linux:ps -awx 与 ps -awwx

Linux:ps -awx 与 ps -awwx

有谁知道的区别吗ps -awx vs. ps -awwx

我正在跟踪一些进程,当我添加额外的“w”时,我可以看到更多信息。这是否像在其他情况下(例如 SSH 调试)一样,当您发出多个“v”时,输出会更“详细”?我在手册页中没有看到有关此内容的任何信息。

答案1

手册页 ( 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.

答案2

开关-w指示使用宽输出,但宽度是有限的。使用-ww指示使用无限宽度输出,这样您就可以看到命令的完整命令行,该命令可以多次换行。添加w超过 2 个的额外 s 不会产生任何效果。

相关内容