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

2024-10-11 08:36:00
admin
原创
73
摘要:问题描述:当我检查进程列表并“grep”出我感兴趣的进程时,进程grep本身也会包含在结果中。例如,要列出终端:$ ps aux | grep terminal user 2064 0.0 0.6 181452 26460 ? Sl Feb13 5:41 gnome-termin...

问题描述:

当我检查进程列表并“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来删除最后的条目...但这并不优雅:)

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


解决方案 1:

通常的技术是这样的:

ps aux | egrep '[t]erminal'

这将匹配包含 的行terminal,但实际上egrep '[t]erminal'不包含!它还适用于多种版本的 Unix。

解决方案 2:

使用pgrep。 它更可靠。

解决方案 3:

这个答案建立在先前的pgrep 答案之上。它还建立在另一个结合使用和的答案之上。以下是一些相关的训练示例:ps`pgrep`

$ 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

与使用pswith进行比较grep。有用的标题行不会被打印:

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

解决方案 4:

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

ps u -C gnome-terminal

(或者使用find等方法搜索 /proc )

解决方案 5:

还有一个选择:

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.

解决方案 6:

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

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

解决方案 7:

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

解决方案 8:

根据最终的用例,您通常希望选择 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朋友已经存在很长时间了,并且比大多数临时重新实现更好地处理整个问题空间。

解决方案 9:

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

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

alias grep='mygrep'

必须grep -v grep是第一位的,否则你--color=auto将因某种原因无法工作。

如果您使用 bash,则此方法有效;如果您使用不同的 shell,则可能有所不同。

相关推荐
  为什么项目管理通常仍然耗时且低效?您是否还在反复更新电子表格、淹没在便利贴中并参加每周更新会议?这确实是耗费时间和精力。借助软件工具的帮助,您可以一目了然地全面了解您的项目。如今,国内外有足够多优秀的项目管理软件可以帮助您掌控每个项目。什么是项目管理软件?项目管理软件是广泛行业用于项目规划、资源分配和调度的软件。它使项...
项目管理软件   601  
  华为IPD与传统研发模式的8大差异在快速变化的商业环境中,产品研发模式的选择直接决定了企业的市场响应速度和竞争力。华为作为全球领先的通信技术解决方案供应商,其成功在很大程度上得益于对产品研发模式的持续创新。华为引入并深度定制的集成产品开发(IPD)体系,相较于传统的研发模式,展现出了显著的差异和优势。本文将详细探讨华为...
IPD流程是谁发明的   7  
  如何通过IPD流程缩短产品上市时间?在快速变化的市场环境中,产品上市时间成为企业竞争力的关键因素之一。集成产品开发(IPD, Integrated Product Development)作为一种先进的产品研发管理方法,通过其结构化的流程设计和跨部门协作机制,显著缩短了产品上市时间,提高了市场响应速度。本文将深入探讨如...
华为IPD流程   9  
  在项目管理领域,IPD(Integrated Product Development,集成产品开发)流程图是连接创意、设计与市场成功的桥梁。它不仅是一个视觉工具,更是一种战略思维方式的体现,帮助团队高效协同,确保产品按时、按质、按量推向市场。尽管IPD流程图可能初看之下显得错综复杂,但只需掌握几个关键点,你便能轻松驾驭...
IPD开发流程管理   8  
  在项目管理领域,集成产品开发(IPD)流程被视为提升产品上市速度、增强团队协作与创新能力的重要工具。然而,尽管IPD流程拥有诸多优势,其实施过程中仍可能遭遇多种挑战,导致项目失败。本文旨在深入探讨八个常见的IPD流程失败原因,并提出相应的解决方法,以帮助项目管理者规避风险,确保项目成功。缺乏明确的项目目标与战略对齐IP...
IPD流程图   8  
热门文章
项目管理软件有哪些?
云禅道AD
禅道项目管理软件

云端的项目管理软件

尊享禅道项目软件收费版功能

无需维护,随时随地协同办公

内置subversion和git源码管理

每天备份,随时转为私有部署

免费试用