Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I check list of processes and 'grep' out those that are interesting for me, the grep itself is also included in the results. For example, to list terminals:

$ 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

Normally I use ps aux | grep something | grep -v grep to get rid of the last entry... but it is not elegant :)

Do you have a more elegant hack to solve this issue (apart of wrapping all the command into a separate script, which is also not bad)

share|improve this question
For what it's worth, this is an ancient FAQ. See item 3.10 at faqs.org/faqs/unix-faq/faq/part3 – tripleee May 16 at 18:33
Thanks for reference. That's their method: ps ux | awk '/name/ && !/awk/ {print $2}' – Jakub M. May 16 at 19:55

3 Answers

up vote 27 down vote accepted

The usual trick is this:

ps aux | grep '[t]erminal'

This will match lines containing terminal, which grep '[t]erminal' does not! It also works on many flavours of Unix.

share|improve this answer

Use pgrep. It's more reliable.

share|improve this answer
pgrep wont work if I look for example for ps aux | grep 'ssh options' – Jakub M. Feb 21 '12 at 11:26

You can filter in the ps command, e.g.

ps aux -C gnome-terminal

(or search through /proc with find etc.)

share|improve this answer
Note that this works with GNU's ps (Linux), but not with the BSD ps. – Josh Feb 5 at 23:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.