Update run-all-speedtests.sh

This commit is contained in:
2023-05-21 21:59:01 -05:00
parent 8e3ad35df9
commit 181dd3ae28

View File

@@ -16,8 +16,8 @@ echo
test=$(speedtest -L)
test2=(${test//$'\n'/ })
for item in ${test2[@]}; do
echo "$item"
for item in ${!test2[@]}; do
echo "$item - ${test2[$item]}"
done
exit 0