[root@libin5 shell]# vim shell2.sh
#!/bin/bash
# 使用死循环实时显示 ens160 网卡发送的数据包流量
while :
do
echo '本地网卡 ens160 流量信息如下: '
ifconfig ens160 | grep "RX pack" | awk '{print $5}'
ifconfig ens160 | grep "TX pack" | awk '{print $5}'
sleep 1
done
标签:网卡,ens160,流量,发送,print,数据包 From: https://www.cnblogs.com/libin-linux/p/16901337.html