You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Neat tool! Beats the hell out of trying to do a CLI speedtest with curl.
I'm trying to use the --csv option in a cron job like so to build up historical data:
./librespeed-cli --csv >> speedtests.csv
However, the contents of my speedtests.csv file are as follows:
Timestamp,Server Name,Address,Ping,Jitter,Download,Upload,Share,IP
2021-05-16T14:20:50.645951073-04:00,"Atlanta, United States (Clouvider)",http://atl.speedtest.clouvider.net/backend,xxx
2021-05-16T14:21:01.390014732-04:00,"Atlanta, United States (Clouvider)",http://atl.speedtest.clouvider.net/backend,xxx
An extra newline in the output is messin' up my csv. Seems to be \n\n instead of just \n.
Neat tool! Beats the hell out of trying to do a CLI speedtest with
curl
.I'm trying to use the
--csv
option in a cron job like so to build up historical data:./librespeed-cli --csv >> speedtests.csv
However, the contents of my speedtests.csv file are as follows:
An extra newline in the output is messin' up my csv. Seems to be
\n\n
instead of just\n
.Workaround for shell scripts: https://stackoverflow.com/a/12525977/3474615
The text was updated successfully, but these errors were encountered: