0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ps -ef | grep の結果だけ知りたい

Posted at

Java やら conmon が長すぎる

check() {
  if grep "$@" | grep -v grep > /dev/null; then
    echo -e "\e[1;32mOK\e[0m"
  else
    echo -e "\e[1;31mNG\e[0m"
  fi
}

出力例

asterisk@fedora41:~$ ps -ef | check /usr/lib/systemd/systemd-journald
OK
asterisk@fedora41:~$ ps -ef | check /usr/lib/systemd/systemd-journaldaaa
NG

作業するときにコピペしておけばログが見やすい

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?