Ethereal-users: Re: [Ethereal-users] tethereal command line output

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxx>
Date: Mon, 10 Sep 2001 14:22:25 -0700 (PDT)
> In some instances i find it to be extremely useful to see the packet count
> on my pty, but in others i would like to be able to suppress that
> altogether.
> 
> Is there a cmd line option to switch it off?

Yes.  The switch has the syntax

	>/dev/null 2>&1

in the Bourne shell and Bourne-compatible shells and

	>&/dev/null

in the C shell and C-shell-compatible shells.  Add those strings before
the "&" at the end of your command line. :-)

(I.e., if you want to suppress output from a backgrounded program, send
the output to "/dev/null".)