Can generate a proper csv

This commit is contained in:
Quentin 2019-09-05 14:49:41 +02:00
parent ae1afef215
commit 5f4f7be4f0

View file

@ -1,10 +1,14 @@
SHELL := /bin/bash
.SILENT: test
test:
echo "run,conf,latency"
. parse_lib.sh && \
get_xp tor_bw_small | while read r; do \
for i in 0 1 2 3; do \
extract_us $$r $$i; \
extract_us $$r $$i | while read l; do \
echo $$r,$$i,$$l;\
done; \
done; \
done;