Script to repeat speedtest for a specified number of times at specified intervals.
This commit is contained in:
parent
795bc51da4
commit
8d01ed27a6
|
@ -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
|
Loading…
Reference in New Issue