| Server IP : 201.20.144.100 / Your IP : 216.73.216.188 Web Server : Apache System : Linux phpweb1.defferrari.com.br 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64 User : platinum ( 1040) PHP Version : 8.2.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/admin/ |
Upload File : |
#!/bin/bash
tail -n 300 /var/log/exim_mainlog | grep "connection count" | awk {'print $11'} | tr -d ')' > /tmp/consulta_connection_exim
# Numero de conexoes
media=`cat /tmp/consulta_connection_exim | wc -l`
# Valor total das conexoes
total=`paste -s -d + /tmp/consulta_connection_exim | bc`
expr $total / $media > /tmp/exim.connection