mirror of
https://github.com/wikihost-opensource/als.git
synced 2025-12-24 12:57:59 +08:00
5 lines
209 B
Bash
5 lines
209 B
Bash
#!/bin/sh
|
|
wget -O /tmp/speedtest.tgz https://install.speedtest.net/app/cli/ookla-speedtest-1.2.0-linux-`uname -m`.tgz
|
|
tar zxf /tmp/speedtest.tgz -C /tmp
|
|
mv /tmp/speedtest /usr/local/bin/speedtest
|
|
rm -rf /tmp/* |