時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
通過本腳本,發(fā)現(xiàn)bash確實在算術(shù)運算方面比老的shell要強大,為此需要開始學習bash,以利用它強大的功能。不過bash中的for語句功能和c中差異比較大。
# cat stream
#! /bin/bash
# Write by Neil.xu? qq:37391319 email: [email protected]
# 2008-8-19 we need to monitor streams of LTS channels, so write this script
typeset in in_old dif_in dif_in1 dif_out1
typeset out out_old dif_out
in_old=$(cat /proc/net/dev | grep eth0 | sed? 's=^.*:==' | awk '{ print $1 }' )
out_old=$(cat /proc/net/dev | grep eth0 | sed? 's=^.*:=='? | awk '{ print $9 }')
while true
do
sleep 1
in=$(cat /proc/net/dev | grep eth0 | sed? 's=^.*:=='? | awk '{ print $1 }')
out=$(cat /proc/net/dev | grep eth0 | sed? 's=^.*:=='? | awk '{ print $9 }')
dif_in=$((in-in_old))
dif_in1=$((dif_in * 8 / 1024 / 1024 ))
dif_out=$((out-out_old))
echo "???? IN: ${dif_in} bytes???? OUT: ${dif_out} bytes "
dif_out1=$((dif_out * 8 / 1024 / 1024 ))
echo "IN: ${dif_in1} mbps??? OUT: ${dif_out1} mbps"
in_old=${in}
out_old=${out}
done
運行效果:
# ./stream
IN: 349179 bytes???? OUT: 1363936 bytes
IN: 2 mbps??? OUT: 10 mbps
IN: 349612 bytes???? OUT: 1361852 bytes
IN: 2 mbps??? OUT: 10 mbps
IN: 348684 bytes???? OUT: 1358952 bytes
IN: 2 mbps??? OUT: 10 mbps
IN: 349998 bytes???? OUT: 1359092 bytes
關(guān)鍵詞標簽:linux
相關(guān)閱讀
熱門文章 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 Tomcat9.0如何安裝_Tomcat9.0環(huán)境變量配置方法 多種操作系統(tǒng)NTP客戶端配置 Linux操作系統(tǒng)修改IP
人氣排行 Linux下獲取CPUID、硬盤序列號與MAC地址 dmidecode命令查看內(nèi)存型號 linux tc實現(xiàn)ip流量限制 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 linux下解壓rar文件 lcx.exe、nc.exe、sc.exe入侵中的使用方法 Ubuntu linux 關(guān)機、重啟、注銷 命令 查看linux服務器硬盤IO讀寫負載