web-dev-qa-db-ja.com

よりエレガントな "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を使用します。しかし、そうではありませんエレガント :)

あなたはこの問題を解決するためにもっとエレガントなハックを持っていますか(全てのコマンドを別々のスクリプトにラップするのとは別に、これも悪くありません)

163
Jakub M.

通常のテクニックはこれです:

ps aux | egrep '[t]erminal'

これはterminalを含む行と一致しますが、egrep '[t]erminal'は一致しません。これは多くのフレーバーのUnixでも動作します。

265
Johnsyweb

pgrep を使用してください。もっと信頼できます。

54
DarkDust

この答えは、以前の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
25
A-B-B

Psコマンドでフィルタリングすることができます。

ps u -C gnome-terminal

(またはfindなどで/ procを検索します)

7
Andreas Frische

括弧を使用して検索パターン内の文字を囲むと、一致する正規表現が含まれないため、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
3
auntchilada

もう1つ 代替

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.
3
TaXXoR

免責事項:私はこのツールの作者ですが...

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
2
Johan Walles