Sujet : Re: Basic ps Tips
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.unix.shellDate : 30. Jul 2024, 22:43:52
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v8bja7$16ghh$1@dont-email.me>
References : 1
User-Agent : Pan/0.159 (Vovchansk; )
On Sat, 27 Jul 2024 00:40:49 -0000 (UTC), I wrote:
Another useful command to use with ps is pgrep(1)
<https://man7.org/linux/man-pages/man1/pgrep.1.html>
If you are expecting more than one process to match your criteria, it
is easy enough to use the “-d,” option to comma-separate them. Then the
output becomes acceptable to the “-p” option in ps, e.g.
ps -p$(pgrep -d, bash) -wwo pid,ppid,lstart,tty,etime,cmd
to report all the bash sessions I have running (quite a lot). The “ww”
says not to truncate the output, which is handy for long command lines.