Linux命令 – 'ps'

我的目标是findPID高的过程(是的,我知道可以做ps -ef|tail -n 1 ,但是我想先findPID然后find过程),所以我用下面的命令find用最高的PID处理: ps -ef|cut -d " " -f 6|sort|tail -n 1然后我发现ps -p得到最高的PID并输出匹配的过程(当我复制PID手动),但由于某种原因,当我把“ | “他们之间说,语法错误。 有人能指出问题是什么吗? 另外如果你有更好的方法来发布这个东西。

Tnx,Dean

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

为程序提供一个参数和写入程序的标准输入是有区别的。

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

但是,您可以使用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). 

也许你正在寻找这个:

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

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

或者你可以使用xargs ,就像Lev Levitsky显示的那样;-)