中国移动宽带-解限速脚本

这个脚本可以模拟测速过程,挂在服务器上每小时执行,就可以解除移动定期降速了。

模拟使用speedtest测速来让移动解除限速

 1#!/bin/bash
 2
 3# 定义文件下载链接
 4download_link="https://speedtest2.niutk.com.prod.hosts.ooklaserver.net:8080/download?size=25000000"
 5
 6# 定义保存文件的路径
 7save_path="/dev/null"
 8
 9# 使用curl命令下载文件
10curl -o "$save_path" "$download_link"
1crontab -e
2# 每小时执行一次
30 * * * * cd /media/kasusa/hd4 && ./cleanDS.sh

Tkinter
开源阅读