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

时间:2012-02-21 10:15:50

标签: linux 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来摆脱最后一个条目......但它不是优雅:)

你有一个更优雅的黑客来解决这个问题(除了将所有命令包装到一个单独的脚本中,这也不错)

9 个答案:

答案 0 :(得分:265)

通常的技巧是:

ps aux | egrep '[t]erminal'

这会匹配包含terminal的行,egrep '[t]erminal'不会!它也适用于 许多 版本的Unix。

答案 1 :(得分:52)

使用pgrep。它更可靠。

答案 2 :(得分:24)

此答案建立在之前的pgrep answer之上。它还建立在另一个answer结合使用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

答案 3 :(得分:7)

您可以在ps命令中进行过滤,例如

ps u -C gnome-terminal

(或使用查找等搜索/ proc)

答案 4 :(得分:3)

又一个alternative

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.

答案 5 :(得分:3)

使用括号括起搜索模式中的字符会排除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

答案 6 :(得分:2)

免责声明:我是此工具的作者,但是......

我使用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

除了使用合理的命令行界面查找进程外,它还会执行许多其他有用的操作,有关the project page的更多详细信息。

适用于Linux和OS X,易于安装:

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

答案 7 :(得分:0)

根据最终用例,您通常希望改用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和朋友已经存在很长时间了,与大多数临时重新实现相比,处理整个问题空间要好得多。

答案 8 :(得分:-2)

另一种选择是编辑你的.bash_profile(或其他你保留bash别名的文件)来创建一个greps' grep'结果出来了。

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

alias grep='mygrep'

grep -v grep必须先行,否则--color=auto因某些原因无法正常工作。

如果您正在使用bash,这是有效的;如果你正在使用不同的shell YMMV。