#!/bin/bash
while true;
do
clear;
echo "=========================";
netstat -ntu|awk '{print $5}'| cut -d: -f1| sort| uniq -c| sort -nr| grep -v 'dres|vers';
echo "=========================";
sleep 1;
done

Editores, Notificaciones, Red, Seguridad, Repositorios, Soluciones, Tutoriales, Tips y mas...
#!/bin/bash
while true;
do
clear;
echo "=========================";
netstat -ntu|awk '{print $5}'| cut -d: -f1| sort| uniq -c| sort -nr| grep -v 'dres|vers';
echo "=========================";
sleep 1;
done