Linux命令 - 'ps'

时间:2013-12-13 20:05:54

标签: linux bash shell putty ps

我的目标是用高斯PID找到进程(是的,我知道可以做ps -ef|tail -n 1,但我想先找到PID然后找到进程),所以我使用以下命令查找使用最高PID的过程:  ps -ef|cut -d " " -f 6|sort|tail -n 1 然后我找到获得最高PID的ps -p并输出匹配过程(当我手动复制PID时它起作用)但由于某种原因,当我在它们之间放置“|”时它会说出语法错误。有谁可以指出问题是什么? 如果你有更好的方法来发布这个东西。

TNX, 迪安

ps,不起作用的完整命令是: ps -ef|cut -d " " -f 6|sort|tail -n 1|ps -p

2 个答案:

答案 0 :(得分:4)

为程序提供参数和写入程序的标准输入之间存在差异。

在第一种情况下,程序将参数列表作为字符串数组读取,可以由程序解释。在第二种情况下,程序基本上从特殊文件中读取并处理其内容。你在程序名后面放的所有内容都是参数。 ps期望有许多可能的参数,例如-p和进程的PID。在您的命令中,您不提供PID作为参数,而是写入它忽略的ps的标准输入。

但是你可以使用xargs,它读取它的标准输入并将其用作命令的参数:

ps -ef | cut -d " " -f 6 | sort | tail -n1 | xargs ps -p

这是xargs所做的事情(来自man):

xargs - build and execute command lines from standard input

或者您可以使用命令替换,如 janos 所示。在这种情况下,shell将$()内的表达式作为命令进行计算,并将其输出放入其中。因此,在扩展发生后,您的命令看起来像ps -p 12345

man bash

Command Substitution
   Command substitution allows the output of a command to replace the com‐
   mand name.  There are two forms:

          $(command)
   or
          `command`

   Bash performs the expansion by executing command and replacing the com‐
   mand substitution with the standard output of  the  command,  with  any
   trailing newlines deleted.  Embedded newlines are not deleted, but they
   may be removed during word splitting.  The command  substitution  $(cat
   file) can be replaced by the equivalent but faster $(< file).

答案 1 :(得分:3)

也许你正在寻找这个:

ps -p $(ps -ef | cut -d " " -f 6 | sort | tail -n 1)

即,ps -p PID打印命令行中指定的PID的详细信息。它不能从标准输入中获取其参数。

或者您可以使用xargsLev Levitsky显示; - )