Skip to content

Instantly share code, notes, and snippets.

@tlongren
Last active October 27, 2020 02:57
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlongren/9245891 to your computer and use it in GitHub Desktop.
Save tlongren/9245891 to your computer and use it in GitHub Desktop.
Speedtest.net logger
#!/bin/bash
OUTPUT=`speedtest-cli --simple --share`
echo -e "$OUTPUT\n$RIGHTNOW\n#############\n" >> st_results_simple
#!/bin/bash
OUTPUT=`speedtest-cli --share`
echo -e "$OUTPUT\n$RIGHTNOW\n#############\n" >> st_results
@tlongren
Copy link
Author

Will dump results to st_results or st_results_simple file.

speedtest-cli is from @sivel, it's pretty nifty.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment