Files
dock/测速中文
2025-10-28 14:12:51 +08:00

9 lines
333 B
Bash

#!/bin/bash
echo "🚀 一键网络测速"
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 - | grep -E "(Testing from|Ping:|Download:|Upload:)" | head -4 | sed '
s/Testing from/🌐 IP地址:/
s/Ping:/🔄 网络延迟:/
s/Download:/⬇️ 下载速度:/
s/Upload:/⬆️ 上传速度:/
'