On Sat, Oct 30, 2010 at 15:20, Nix <[email protected]> wrote: > +grep -v 'Process PID=[1-9][0-9]* runs in 32 bit mode.' < out > out-destrace
Even thou it's rare PID can be single digit number. Also I don't see grep -v in use for other tests. I think following is better. sed '/Process PID=[0-9]* runs in 32 bit mode./d' < out > out-destrace -- Sami Kerola http://www.iki.fi/kerolasa/
