一个监控网卡流量的shell脚本

时间:2021-05-22

实现代码:

#!/bin/basheth_in_old=$(ifconfig eth0|grep "RX bytes"|sed 's/RX bytes://'|awk '{print $1}')eth_out_old=$(ifconfig eth0|grep "RX bytes"|sed 's/.*TX bytes://'|awk '{print $1}')sleep 1eth_in_new=$(ifconfig eth0|grep "RX bytes"|sed 's/RX bytes://'|awk '{print $1}')eth_out_new=$(ifconfig eth0|grep "RX bytes"|sed 's/.*TX bytes://'|awk '{print $1}')eth_in=$(echo "scale=2;($eth_in_new - $eth_in_old)/1000.0"|bc)eth_out=$(echo "scale=2;($eth_out_new - $eth_out_old)/1000" | bc)echo "IN: $eth_in KB"echo "OUT:$eth_out KB"

输出:
[root@localhost hbshell]# ./traffic.sh

IN: 1.74 KB
OUT:1.17 KB

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章