get fast url

This commit is contained in:
qiaofeng1227 2023-05-25 17:22:31 +08:00
parent e8da8b42c3
commit 76f952e1c5

View file

@ -311,9 +311,16 @@ function fastest_url() {
fastest_time=0
for url in "${urls[@]}"; do
total_time=0
for i in {1..5}; do
time=$(curl -s -w '%{time_total}\n' -o /dev/null $url)
if (( $(echo "$time < $fastest_time || $fastest_time == 0" | bc -l) )); then
fastest_time=$time
total_time=$(echo "$total_time + $time" | bc -l)
done
avg_time=$(echo "$total_time / 5" | bc -l)
if (( $(echo "$avg_time < $fastest_time || $fastest_time == 0" | bc -l) )); then
fastest_time=$avg_time
fastest_url=$url
fi
done
@ -321,7 +328,7 @@ function fastest_url() {
echo "$fastest_url"
}
clone_repo() {
function clone_repo() {
url=$1
path=$2
for i in {1..5}
@ -345,7 +352,7 @@ ParpareStaticFiles(){
echo "Parpare to install ..."
fasturl=$(fastest_url "${urls[@]}")
echo "Fast url is: "$fasturl
echo "curl 5 times, avera fast url is: "$fasturl
# download apps
mkdir -p /data/apps