Skip to content

Instantly share code, notes, and snippets.

@podlom
Forked from pavel-odintsov/pps.sh
Created June 25, 2015 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save podlom/bef6073fffed5fb41af4 to your computer and use it in GitHub Desktop.
Save podlom/bef6073fffed5fb41af4 to your computer and use it in GitHub Desktop.
#!/bin/bash
INTERVAL="1" # update interval in seconds
if [ -z "$1" ]; then
echo
echo usage: $0 [network-interface]
echo
echo e.g. $0 eth0
echo
echo shows packets-per-second
exit
fi
IF=$1
while true
do
R1=`cat /sys/class/net/$1/statistics/rx_packets`
T1=`cat /sys/class/net/$1/statistics/tx_packets`
sleep $INTERVAL
R2=`cat /sys/class/net/$1/statistics/rx_packets`
T2=`cat /sys/class/net/$1/statistics/tx_packets`
TXPPS=`expr $T2 - $T1`
RXPPS=`expr $R2 - $R1`
echo "TX $1: $TXPPS pkts/s RX $1: $RXPPS pkts/s"
done
@podlom
Copy link
Author

podlom commented Jun 25, 2015

Fixed syntax error:
$ /bin/bash -n ~/scripts/shell_scripts/pps.sh
/home/taras/scripts/shell_scripts/pps.sh: line 27: syntax error: unexpected end of file

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment