3535c14668
use functions to avoid repeatly calling "cat" commad and make code cleaner Change-Id: If8a2643eb99f9acfcd94d9f042216bbaec7718cc
30 lines
624 B
Bash
Executable File
30 lines
624 B
Bash
Executable File
#!/bin/bash
|
|
# Author: Kun Huang <academicgareth@gmail.com>
|
|
|
|
dev=${1:-eth0}
|
|
|
|
function get_rx_packets()
|
|
{
|
|
echo `cat /sys/class/net/$dev/statistics/rx_packets `
|
|
}
|
|
|
|
function get_rx_bytes()
|
|
{
|
|
echo `cat /sys/class/net/$dev/statistics/rx_bytes `
|
|
}
|
|
|
|
packages=$(get_rx_packets)
|
|
bytes=$(get_rx_bytes)
|
|
|
|
interval=3
|
|
|
|
trap 'break' INT
|
|
while [ 1 -eq 1 ] ; do
|
|
sleep $interval
|
|
n_packages=$(get_rx_packets)
|
|
n_bytes=$(get_rx_bytes)
|
|
python -c "print '%0.2f pkt/s %0.2f byte/s' % ((float($n_packages-$packages)/int($interval), (float($n_bytes-$bytes)/int($interval))))"
|
|
packages=$n_packages
|
|
bytes=$n_bytes
|
|
done
|