Created
September 7, 2015 15:35
-
-
Save ksc91u/25f75afe31ea297a9360 to your computer and use it in GitHub Desktop.
speed_test
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
#!/bin/bash | |
IP=`host developer.download.nvidia.com 139.175.1.1 | tail -n 1 |cut -f 4 -d " "` | |
FILE_PATH="mobile/tegra/l4t/r21.2.0/pm375_release_armhf/Tegra_Linux_Sample-Root-Filesystem_R21.2.0_armhf.tbz2" | |
/usr/bin/wget --header="Host: developer.download.nvidia.com" -Y off -O /dev/null http://$IP/$FILE_PATH 2>wget.2 1>wget.1 | |
SPEED_SEED=`grep 100% wget.2` | |
echo $SPEED_SEED >> /root/speed.seednet | |
IP=`host developer.download.nvidia.com 168.95.1.1 | tail -n 1 |cut -f 4 -d " "` | |
wget --header="Host: developer.download.nvidia.com" -Y off -O /dev/null http://$IP/$FILE_PATH 2> wget.2 1> wget.1 | |
SPEED_SEED=`grep 100% wget.2` | |
echo $SPEED_SEED >> /root/speed.hinet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
那一行xxx M = 的M 應該是wget 最後的速度 因為有可能斷掉又續抓 所以會有很怪的數字 可以忽略