Can generate a proper csv
This commit is contained in:
parent
ae1afef215
commit
5f4f7be4f0
1 changed files with 5 additions and 1 deletions
|
@ -1,10 +1,14 @@
|
||||||
SHELL := /bin/bash
|
SHELL := /bin/bash
|
||||||
|
.SILENT: test
|
||||||
|
|
||||||
test:
|
test:
|
||||||
|
echo "run,conf,latency"
|
||||||
. parse_lib.sh && \
|
. parse_lib.sh && \
|
||||||
get_xp tor_bw_small | while read r; do \
|
get_xp tor_bw_small | while read r; do \
|
||||||
for i in 0 1 2 3; 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; \
|
||||||
done;
|
done;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue