9 lines
333 B
Bash
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:/⬆️ 上传速度:/
|
|
'
|