diff options
author | Steph Enders <steph@senders.io> | 2023-12-22 14:23:50 -0500 |
---|---|---|
committer | Steph Enders <steph@senders.io> | 2023-12-22 14:23:50 -0500 |
commit | ee159acad5aab4ca25d749dfaced45f67831cfe6 (patch) | |
tree | 22050742502f46874f93475592a5b28943d0a413 | |
parent | c5d876faff7deef0506a9c7b2de3a169ca6c8e45 (diff) |
Updated to use the speedtest-cli instead of pythonmain
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | log.sh | 20 |
3 files changed, 13 insertions, 11 deletions
@@ -1,2 +1,4 @@ log.tsv .venv +speedtest.d +speedtest-cli
\ No newline at end of file @@ -2,6 +2,8 @@ This is basically just speedtest-cli --csv running indefinetly +Requires speedtest-cli (from ookla) to be available on the system + ## CSV layout The current CSV headers are: @@ -1,9 +1,6 @@ #!/usr/bin/env bash - +set -ex WORKING_DIR=$(dirname $0) -python3 -m venv $WORKING_DIR/.venv -source $WORKING_DIR/.venv/bin/activate -python3 -m pip install -I --disable-pip-version-check -r $WORKING_DIR/requirements.txt if [[ $# -ne 1 ]]; then OUTPUT=$WORKING_DIR/log.tsv @@ -12,12 +9,13 @@ else fi if [[ ! -f $OUTPUT ]]; then - speedtest-cli --csv-header | sed -E 's/,/\t/g' > $OUTPUT -fi - -len=$(wc -l $OUTPUT | cut -d' ' -f1) -if [[ $len -le 0 ]]; then - speedtest-cli --csv-header | sed -E 's/,/\t/g' > $OUTPUT + ./speedtest-cli --output-header -f tsv > $OUTPUT +else + len=$(wc -l $OUTPUT | cut -d' ' -f1) + if [[ $len -lt 1 ]]; then + ./speedtest-cli --output-header -f tsv > $OUTPUT + else + ./speedtest-cli -f tsv >> $OUTPUT + fi fi -speedtest-cli --csv-delimiter ' ' --csv >> $OUTPUT |