您的位置 首页 shell案例

shell实时显示 eth0 网卡发送的数据包流量

shell实时显示 eth0 网卡发送的数据包流量

#!/bin/bash
 
# 使用死循环实时显示 eth0 网卡发送的数据包流量 
 
while :
do 
	echo '本地网卡 eth0 流量信息如下: '
	ifconfig eth0 | grep "RX pack" | awk '{print $5}'
     ifconfig eth0 | grep "TX pack" | awk '{print $5}'
	sleep 1
done

 

欢迎来撩 : 汇总all

白眉大叔

关于白眉大叔linux云计算: 白眉大叔

热门文章