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?
ps > /dev/nullwill do exactly what you want. Seriously though,grepthe output ofps. You can even make an alias. – robert Jul 6 '11 at 0:42