20 lines
429 B
Bash
Executable File
20 lines
429 B
Bash
Executable File
#!/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 |