小编典典

查看 PS 命令的完整输出

all

当我ps -aux在使用 putty 连接的 linux 服务器上运行命令时,很少有进程太长而无法适应我当前的窗口宽度。有替代方案吗?

- 更新 -

我很抱歉降级,我认为其他人也不会发现答案有用,所以我降级了。

这是您要求的信息。

hadoop-user@hadoop-desk:~$ echo $TERM
xterm

hadoop-user@hadoop-desk:~$ stty -a
speed 38400 baud; rows 47; columns 158; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
-parenb -parodd cs8 -hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff -iuclc -ixany -imaxbel -iutf8
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl echoke

hadoop-user@hadoop-desk:~$ echo $COLUMNS
158

阅读 164

收藏
2022-07-13

共1个答案

小编典典

很可能您正在使用寻呼机,例如lessormost因为
的输出ps aux比屏幕长。如果是这样,以下选项将导致(或强制)长行换行而不是被截断。

ps aux | less -+S

ps aux | most -w

如果您使用以下任一命令,则不会换行,但您可以使用箭头键或其他移动键左右滚动。

ps aux | less -S    # use arrow keys, or Esc-( and Esc-), or Alt-( and Alt-)

ps aux | most       # use arrow keys, or < and > (Tab can also be used to scroll right)

行总是为more和换行pg

ps aux管道中使用时,该w选项是不必要的,因为ps仅在输出到终端时才使用屏幕宽度。

2022-07-13