Skip to content

Instantly share code, notes, and snippets.

@Mekajiki
Created April 1, 2020 08:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mekajiki/5d513684aa3e89d147f6aa5cc2ac790d to your computer and use it in GitHub Desktop.
Save Mekajiki/5d513684aa3e89d147f6aa5cc2ac790d to your computer and use it in GitHub Desktop.
#!/bin/zsh
{
echo '"' ;
date +%s ;
echo '",' ;
speedtest --progress=no --format=csv;
result=$?;
while (( $result ))
do
sleep 10
speedtest --progress=no --format=csv
result=$?
done;
} | tr -d \\n
echo ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment