Re: [exim] counting messages in queue

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Warren Baker
Ημερομηνία:  
Προς: John Jetmore
Υ/ο: exim-users
Αντικείμενο: 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