Last active
September 21, 2016 21:34
-
-
Save sveba/078ad715df80eff2dbe62ec09f6c0a25 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if ! hash speedtest-cli 2>/dev/null; then | |
wget -O /usr/local/bin/speedtest-cli https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest_cli.py | |
chmod +x /usr/local/bin/speedtest-cli | |
fi | |
echo "------------------------------------" >> /var/log/speedtest.haskovo.log | |
echo `date -Iseconds` >> /var/log/speedtest.haskovo.log | |
/usr/local/bin/speedtest-cli --server 3176 >> /var/log/speedtest.haskovo.log | |
echo "------------------------------------" >> /var/log/speedtest.haskovo.log | |
echo "------------------------------------" >> /var/log/speedtest.vodafone.log | |
echo `date -Iseconds` >> /var/log/speedtest.vodafone.log | |
/usr/local/bin/speedtest-cli --server 1746 >> /var/log/speedtest.vodafone.log | |
echo "------------------------------------" >> /var/log/speedtest.vodafone.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment