Re: [exim] counting messages in queue

Kezdőlap
Üzenet törlése
Válasz az üzenetre
Szerző: Warren Baker
Dátum:  
Címzett: John Jetmore
CC: exim-users
Tárgy: 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