更优雅的“ ps aux | grep-v grep”

当我检查进程列表并“ grep”出那些我感兴趣的进程时,结果中也包含了 grep本身。例如,列出终端:

$ ps aux  | grep terminal
user  2064  0.0  0.6 181452 26460 ?        Sl   Feb13   5:41 gnome-terminal --working-directory=..
user  2979  0.0  0.0   4192   796 pts/3    S+   11:07   0:00 grep --color=auto terminal

通常我使用 ps aux | grep something | grep -v grep来删除最后一个条目... ... 但它不是 优雅:)

您是否有更优雅的方法来解决这个问题(除了将所有命令封装到一个单独的脚本中,这也不错)

196479 次浏览

使用 Pgrep,它更可靠。

您可以在 ps 命令中进行筛选,例如。

ps u -C gnome-terminal

(或使用 找到等进行搜寻/程式码处理)

通常的技巧是这样的:

ps aux | egrep '[t]erminal'

这将匹配包含 terminal的行,而 egrep '[t]erminal'不匹配! 它也适用于 许多风格的 Unix。

再来一张 另一种选择:

ps -fC terminal

下面是一些选择:

 -f        does full-format listing. This option can be combined
with many other UNIX-style options to add additional
columns. It also causes the command arguments to be
printed. When used with -L, the NLWP (number of
threads) and LWP (thread ID) columns will be added. See
the c option, the format keyword args, and the format
keyword comm.


-C cmdlist     Select by command name.
This selects the processes whose executable name is
given in cmdlist.

这个答案建立在以前的 pgrep 回答的基础上。它也建立在另一个 回答结合使用 pspgrep。以下是一些相关的培训实例:

$ pgrep -lf sshd
1902 sshd


$ pgrep -f sshd
1902


$ ps up $(pgrep -f sshd)
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root      1902  0.0  0.1  82560  3580 ?        Ss   Oct20   0:00 /usr/sbin/sshd -D


$ ps up $(pgrep -f sshddd)
error: list of process IDs must follow p
[stderr output truncated]


$ ps up $(pgrep -f sshddd) 2>&-
[no output]

以上可用作 功能:

$ psgrep() { ps up $(pgrep -f $@) 2>&-; }


$ psgrep sshd
USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root      1902  0.0  0.1  82560  3580 ?        Ss   Oct20   0:00 /usr/sbin/sshd -D

与使用 psgrep相比,有用的标题行没有打印出来:

$  ps aux | grep [s]shd
root      1902  0.0  0.1  82560  3580 ?        Ss   Oct20   0:00 /usr/sbin/sshd -D

另一种选择是编辑 .bash_profile(或者保存 bash 别名的其他文件) ,以创建一个从结果中取出 grep 的函数。

function mygrep {
grep -v grep | grep --color=auto $1
}


alias grep='mygrep'

grep -v grep必须是第一,否则你的 --color=auto将不会工作的某些原因。

如果您使用 bash,如果您使用不同的 shell YMMV,这种方法就可以工作。

在搜索模式中使用括号包围字符将排除 grep进程,因为它不包含匹配的正则表达式。

$ ps ax | grep 'syslogd'
16   ??  Ss     0:09.43 /usr/sbin/syslogd
18108 s001  S+     0:00.00 grep syslogd


$ ps ax | grep '[s]yslogd'
16   ??  Ss     0:09.43 /usr/sbin/syslogd


$ ps ax | grep '[s]yslogd|grep'
16   ??  Ss     0:09.43 /usr/sbin/syslogd
18144 s001  S+     0:00.00 grep [s]yslogd|grep

免责声明: 我是这个工具的作者,但是..。

我会用 Px:

~ $ px atom
PID COMMAND          USERNAME   CPU RAM COMMANDLINE
14321 crashpad_handler walles   0.01s  0% /Users/walles/Downloads/Atom.app/Contents/Frameworks/Electron Framework.framework/Resources/crashpad_handler --database=
16575 crashpad_handler walles   0.01s  0% /Users/walles/Downloads/Atom.app/Contents/Frameworks/Electron Framework.framework/Resources/crashpad_handler --database=
16573 Atom Helper      walles    0.5s  0% /Users/walles/Downloads/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper --type=gpu-process --cha
16569 Atom             walles   2.84s  1% /Users/walles/Downloads/Atom.app/Contents/MacOS/Atom --executed-from=/Users/walles/src/goworkspace/src/github.com/github
16591 Atom Helper      walles   7.96s  2% /Users/walles/Downloads/Atom.app/Contents/Frameworks/Atom Helper.app/Contents/MacOS/Atom Helper --type=renderer --no-san

除了查找具有合理命令行界面的进程之外,它还可以做很多其他有用的事情,关于 项目页面的更多细节。

可以在 Linux 和 OS X 上运行,安装简单:

curl -Ls https://github.com/walles/px/raw/python/install.sh | bash

根据最终用例的不同,您通常希望更喜欢 Awk。

ps aux | awk '/[t]erminal/'

特别是当你有

ps aux | grep '[t]erminal' | awk '{print $1}'  # useless use of grep!

其中正则表达式显然可以被分解到 Awk 脚本中:

ps aux | awk '/[t]erminal/ { print $1 }'

但是说真的,不要自己重新发明这个。pgrep和它的朋友们已经存在很长时间了,并且比大多数特别的重新实现更好地处理了这整个问题空间。