This commit is contained in:
James Stewart 2017-05-05 07:21:12 +00:00 committed by GitHub
commit 816d22adf0
1 changed files with 11 additions and 0 deletions

11
speedtestmonitor.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
testnum="$counter"
echo "How many times should I test?"
read counter
echo "And how long between tests?"
read delay
until [ $counter -lt 1 ];
do
./speedtest_cli.py; sleep $delay
let counter=counter-1
done