Files
Misc-Scripts/run-all-speedtests.sh

20 lines
429 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
if [ -d /opt/idssys/defaults ]; then
source /opt/idssys/defaults/colors.inc
source /opt/idssys/defaults/default.inc
else
source /dev/stdin <<< "$(curl -sL http://go.scity.us/colorsinc)"
source /dev/stdin <<< "$(curl -sL http://go.scity.us/defaultinc)"
fi
echo
echo -e "${idsCL[LightGreen]}Run All Local Speedtests${idsCL[Default]}"
echo
test=($(speedtest -L))
printf "'%s\n" "${test[@]}"
exit 0