Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!
Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.
Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!
[Solved] Grep ps - How to exclude the "grep ps" itself from the output?
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2859
Topic starter
January 13, 2014 7:14 AM
I often play in a shell with the ps/grep combo, like this one:
ps -ax | grep whatever
The result will show the grep statement as well. With a simple trick, you can exclude the grep statement in the output:
ps -ax | grep [w]hatever
(Square brackets around the first character - this will match lines containing "whatever", which grep '[w]hatever' does not)