Skip to content

Commit

Permalink
Create speedtest_bestv.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
redrainl authored Feb 10, 2023
1 parent 1252e3a commit c6e8399
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions speedtest/speedtest_bestv.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
rm -f speedtest_bestv.log
while read line; do
ip=$line
date1=$(date +%Y%m%d%H)
a=$(date +%s)
a=${a:0:9}
a=`expr $a - 7`
url2="$date1/$a.ts"
url="http://$ip/liveplay-kk.rtxapp.com/live/program/live/cctv1hd8m/8000000/$url2"
echo $url
curl $url --connect-timeout 2 --max-time 15 -o /dev/null >dl.log 2>&1
a=$(tail -n 1 dl.log|awk '{print $NF}')
echo "$ip $a">> speedtest_bestv.log


done
cat speedtest_bestv.log |grep M|awk '{print $2" " $1}'|sort

0 comments on commit c6e8399

Please sign in to comment.