Chinaunix首页 | 论坛 | 博客
  • 博客访问: 82246
  • 博文数量: 32
  • 博客积分: 1526
  • 博客等级: 上尉
  • 技术积分: 270
  • 用 户 组: 普通用户
  • 注册时间: 2009-10-28 13:56
文章分类

全部博文(32)

文章存档

2012年(1)

2011年(15)

2010年(1)

2009年(15)

我的朋友
最近访客

分类:

2009-11-01 11:33:43

这个脚本可以计算网卡设备eth0的在三秒内的流量,包括发送出去的和收到的流量,单位是bit。
 
 
#!/bin/bash
#######################################################################################
#This scripts can calculate your network device eth0's flow.
#Later I will update this scripts to calculate the appointed device by user.
#Version 1.0
#Date 2009-11-1
#written by zhengyu
#If you have some questions, you can contact me by send emails to .
#Thanks for using!
#######################################################################################
time=1
trytime=100
echo -e "TX(bits)\tRX(bits)"
while [ $time -lt $trytime ];do
    sleeptime=3
    tx_bytes1=`ifconfig eth0 |grep 'RX bytes'|awk '{print $6}'|awk -F ':' '{print $2}'`
    rx_bytes1=`ifconfig eth0 |grep 'RX bytes'|awk '{print $2}'|awk -F ':' '{print $2}'`
    sleep $sleeptime
    tx_bytes2=`ifconfig eth0 |grep 'RX bytes'|awk '{print $6}'|awk -F ':' '{print $2}'`
    rx_bytes2=`ifconfig eth0 |grep 'RX bytes'|awk '{print $2}'|awk -F ':' '{print $2}'`
    tx_flow=`expr $tx_bytes2 - $tx_bytes1`
    rx_flow=`expr $rx_bytes2 - $rx_bytes1`
    echo -e $tx_flow"\t\t"$rx_flow
done
 
 
运行该脚本的结果大致会如下
TX(B)  RX(B)
114    120
39      7
238    224
91      55
52      72
441    442
35      80
388    358
26      65
181    126
15      65
85      70
115    128
10      7
377    367
10      7
199    220
 
在这个脚本中学到几个知识点,包括echo命令的-e这个参数,以前不知道。还有while循环,awk的使用和四则运算。本人是个超级新手,正在学习中!
阅读(1020) | 评论(0) | 转发(0) |
0

上一篇:#!/bin/bash -

下一篇:删除脚本自身

给主人留下些什么吧!~~