March 18, 2013
3:59 p.m.
On Mon, 18 Mar 2013 06:50:25 +0100, michi1@michaelblizek.twilightparadox.com said:
Hi!
On 06:52 Fri 08 Mar , michi1@michaelblizek.twilightparadox.com wrote:
./a.out `ps a|grep wget|grep -v grep
To save the double grep, you can do something like this: ps a | grep '[w]get' | ... Figuring out why that works is left as an exercise for the reader...