Last active
September 23, 2022 16:47
-
-
Save coltenkrauter/4e1e049f0f90d35329b109f6ff5558fc to your computer and use it in GitHub Desktop.
Internet speed test via terminal (Linux/ubuntu/bash/sh/zsh)
This file contains hidden or 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
# Do a speed test | |
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 - | |
# Add speedtest alias to your Z Profile | |
echo 'alias speedtest="curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 -"' >> ~/.zshrc | |
# Add speedtest alias to your Bash Profile | |
echo 'alias speedtest="curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 -"' >> ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment