diff options
| author | Archie Hilton <archie.hilton1@gmail.com> | 2019-10-25 12:43:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-25 12:43:29 +0100 |
| commit | 7cecb2d92b9aa2aa981dd9b2847f3624189f93e8 (patch) | |
| tree | 73ddc9698c52f85c4665287fd352ac74fa770357 /modules/networkdowntraffic | |
| parent | 570963e08c2b95b2ba0ba97dfed401dd0f06a4e3 (diff) | |
| parent | fe7633cd1b14275540dfba051b67c6bcef03ecc7 (diff) | |
Merge pull request #3 from thytom/parallel
Parallel stuff + New modules
Diffstat (limited to 'modules/networkdowntraffic')
| -rwxr-xr-x | modules/networkdowntraffic | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/networkdowntraffic b/modules/networkdowntraffic new file mode 100755 index 0000000..f1b5584 --- /dev/null +++ b/modules/networkdowntraffic @@ -0,0 +1,31 @@ +#!/bin/bash + +# Prints out the current down network traffic in MB + +PREFIX=' ' + +get_down_traffic() +{ + RECIEVE1=0 + RECIEVE2=0 + + IFACES=$(ip -o link show | awk -F': ' '{print $2}') + for IFACE in $IFACES; do + if [ $IFACE != "lo" ]; then + RECIEVE1=$(($(ip -s -c link show wlan0 | tail -n3 | head -n 1 | cut -d " " -f5) + $RECIEVE1)) + fi + done + + sleep 1 + + IFACES=$(ip -o link show | awk -F': ' '{print $2}') + for IFACE in $IFACES; do + if [ $IFACE != "lo" ]; then + RECIEVE2=$(($(ip -s -c link show wlan0 | tail -n3 | head -n 1 | cut -d " " -f5) + $RECIEVE2)) + fi + done + + echo "$PREFIX$(expr $(expr $RECIEVE2 - $RECIEVE1 ) / 1000)KB/s" +} + +get_down_traffic |
