Script to repeat speedtest for a specified number of times at specified intervals.

This commit is contained in:
James Stewart 2015-01-24 00:17:21 -05:00
parent 795bc51da4
commit 8d01ed27a6
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