按进程的 PID(进程号) 对网络连接数排序 2025-03-07 本文已影响0人 葵花点穴 ss -tunap | awk -F 'pid=' '{print $2}' | awk -F ',' '{print $1}' | sort | uniq -c | sort -k2 -n