Re: qmailanalog and zoverall.

2000-07-19 Thread Moragues Ramón, Antonio
Hi, I do it with: printf("Bytes in completed messages: %.0f\n", mbytes) printf("Bytes weighted by success: %.0f\n", rbytes) Thanks On Tue, 18 Jul 2000, Michael T. Babcock wrote: Is awk perhaps using an output format that uses scientific notation when the number (mbytes) is too large?

qmailanalog and zoverall.

2000-07-18 Thread Moragues Ramón, Antonio
Hi, I run a qmail server and I want know the total number of bytes sent trought it, y use qmailanalog 0.70 and gawk 3.0.4, but instead of show the total bytes in completes messages show a nunmber like this 1.983e+10, I tried use gawk and mawk, the server is a Debian GNU/Linux 2.2 on a PII 450,

Re: qmailanalog and zoverall.

2000-07-18 Thread Michael T. Babcock
Is awk perhaps using an output format that uses scientific notation when the number (mbytes) is too large? Should you change "print mbytes" to "printf ("%d", mbytes)" ??? Moragues Ramón, Antonio wrote: Hi, I run a qmail server and I want know the total number of bytes sent trought it, y