码迷,mamicode.com
首页 > 其他好文 > 详细

脚本_实时显示网卡eth0上的数据流量

时间:2019-06-16 19:59:15      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:eth   grep   死循环   one   数据   脚本   done   config   发送   

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

脚本_实时显示网卡eth0上的数据流量

标签:eth   grep   死循环   one   数据   脚本   done   config   发送   

原文地址:https://www.cnblogs.com/liusingbon/p/11032624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!