Skip to content

Instantly share code, notes, and snippets.

@coltenkrauter
Last active September 23, 2022 16:47
Show Gist options
  • Save coltenkrauter/4e1e049f0f90d35329b109f6ff5558fc to your computer and use it in GitHub Desktop.
Save coltenkrauter/4e1e049f0f90d35329b109f6ff5558fc to your computer and use it in GitHub Desktop.
Internet speed test via terminal (Linux/ubuntu/bash/sh/zsh)
# 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