Using grep and wc to search and count matching processes

1.3k Views Asked by At

I am using ps to list all of the processes running on the machine I am connected to, searching them for my own processes, and then printing the number of processes I am running, like so:

ps -Af | grep '^mkuhlman' | wc -l

Problem is, checking against the actual list of processes, I'm only running 8, but wc is listing 9 processes. What am I doing wrong?

To clarify, I am not looking for matches to processes, but matches to my own username.

2

There are 2 best solutions below

2
On

Your pipeline has a few processes, and you're counting them.

Running ps is fine, but you might be happier with pgrep. It has a man page. (And ps -A seems at odds with grepping for your own username.)

0
On

Though grep -v grep would work in most cases, it can result in wrong output as it excludes all grep processes, not just the ones related to the ps command line. So, you could do this instead:

ps -Af | grep -E '^mkuhlman|__unique__' | grep -v __unique__

where __unique__ is a unique string that is unlikely to be used in the command line of other user processes.


See also: