How can I generate a process listing, that does not include the current process, its shell and any related processes in the process group, and the SSHD process generated to handle the session?

Does ps(1) actually have an option that does this?

Is there some predicate I can apply to each process to filter it out of any listing I generate?

link|improve this question

78% accept rate
Are you wanting to use ps or the shell, or Python? It's not super clear. – John Zwinck Jul 6 '11 at 0:39
1  
ps > /dev/null will do exactly what you want. Seriously though, grep the output of ps. You can even make an alias. – robert Jul 6 '11 at 0:42
feedback

1 Answer

Combining the answer referenced below with the -N (--deselect) option for ps might get you there:

link|improve this answer
Great link____. – Matt Joiner Jul 6 '11 at 3:22
feedback

Your Answer

 
or
required, but never shown

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