博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux shell下写监控网卡流量的脚本
阅读量:6320 次
发布时间:2019-06-22

本文共 328 字,大约阅读时间需要 1 分钟。

hot3.png

#! /bin/sh

a=`cat /sys/class/net/eth0/statistics/rx_bytes`

sleep 5

b=`cat /sys/class/net/eth0/statistics/rx_bytes`

c=`echo "$b-$a"|bc`

echo "$c"

d=`echo "scale=4;$c/1000/5"|bc`

m=`echo "scale=4;$c/1000/5"|bc|cut -d "." -f 1`

if [ -z "$m" ]; then

        e="0$d"

        echo "$e"

else

 echo "$d"

fi

转载于:https://my.oschina.net/zphj1987/blog/77841

你可能感兴趣的文章
Spring Boot 整合redis
查看>>
CSS hover改变背景图片过渡动画生硬
查看>>
订单的子单表格设置颜色
查看>>
Office365 Exchange Hybrid 番外篇 ADFS后端SQL群集(一)
查看>>
lvs fullnat部署手册(三)rs内核加载toa篇
查看>>
SSL/TLS原理详解
查看>>
buildroot下查找外部编译器通过ext-toolchain-wrapper调用的参数
查看>>
iframe 在ie下面总是弹出新窗口解决方法
查看>>
android编译系统makefile(Android.mk)写法
查看>>
MD5源代码C++
查看>>
Eclipse 添加 Ibator
查看>>
Linux中变量$#,$@,$0,$1,$2,$*,$$,$?的含义
查看>>
Python编程语言
查看>>
十四、转到 linux
查看>>
Got error 241 'Invalid schema
查看>>
ReferenceError: event is not defined
查看>>
男人要内在美,更要外在美
查看>>
为什么要跟别人比?
查看>>
app启动白屏
查看>>
Oracle 提高查询性能(基础)
查看>>