Created
April 3, 2018 02:57
-
-
Save foxutech/a31651a8dd63968972ee26a1fe5aa304 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# print result | |
echo "" | |
#echo "Upload speed: $up_speed kB/s" | |
#echo "Download speed: $down_speed kB/s" | |
up_mbps=$(echo "scale=0; $up_speed/125" |bc) | |
down_mbps=$(echo "scale=0; $down_speed/125" |bc) | |
echo "" | |
echo "Upload speed: $up_mbps mbps" | |
echo "Download speed: $down_mbps mbps" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment