awk if 使用方法

时间:2025-02-26 07:43:11

awk if 使用方法
例如筛选tcp中接受或发送的有堆积的链接情况:

$ netstat -tanp  | awk '{if ($2 > 0 || $3 > 0) print $0}'
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0     36 172.17.1.12:1229      11.19.14.15:8763    ESTABLISHED 29280/sshd: root@pt

awk中的if的比较符使用C比较符号。