Autor: Warren Baker
Data:
Para: John Jetmore
CC: exim-users
Asunto: Re: [exim] counting messages in queue
On Mon, Dec 6, 2010 at 4:00 PM, John Jetmore <jj33@???> wrote:
> or even:
>
> exipick -bpc -x
or even:
exiqgrep -xic
but that will show you
x matches out of y messages
so some awk fu:
exiqgrep -xic | awk '{print $1}'
so a gazillion ways to skin this cat.
.warren