📄 Viewing: //scripts/net_show_connections
#!/bin/bash
# CWP show connection number and sort them by size

netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -n

← Back to directory