Re: [Tcpick-project] Removing Data From Stdout
Status: Beta
Brought to you by:
duskdruid
From: kirash <ki...@in...> - 2007-12-13 10:14:00
|
On Wed, 12 Dec 2007 14:37:58 -0500 Blake wrote: > I'm using grep -v to remove those entries now, is there a better way? I > considered running multiple tcpick sessions, but that seems overkill. > tcpick -i eth1 -n -C -F2 -wRub |grep -v -E "\([0-9]*\)" > > Am I missing an option that can do this? because of a problem with a "break" in args.c the "h" option is added together with "F" option, to resolve apply this patch and recompile: --- src/args.c.orig 2005-01-16 16:19:35.000000000 +0100 +++ src/args.c 2007-12-13 10:50:20.642444150 +0100 @@ -274,7 +274,7 @@ "-F option needs a number\n" "i.e. -F1 or -F2" ); } - + break; case 'h': flags.header = 1; break; bye, kirash |