tor_multipath_voip/scripts/generate_csv

24 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-03-28 20:13:32 +00:00
#!/bin/bash
2019-04-03 09:47:59 +00:00
echo "orig latencies global"
{ echo "delta" ; ls|grep orig-|while read -r line; do cat $line/res/orig.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > orig_latencies_global.csv
echo "orig latencies distri"
{ echo "hs,type,delta";ls|grep orig-|while read -r line; do cat $line/res/orig.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > orig_latencies_distri.csv
2019-03-28 20:13:32 +00:00
echo "naive latencies global"
2019-04-03 09:47:59 +00:00
{ echo "delta" ; ls|grep naive-|while read -r line; do cat $line/res/naive.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > naive_latencies_global.csv
2019-03-28 20:13:32 +00:00
echo "naive latencies distri"
2019-04-03 09:47:59 +00:00
{ echo "hs,type,delta";ls|grep naive-|while read -r line; do cat $line/res/naive.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > naive_latencies_distri.csv
echo "rr latencies global"
{ echo "delta" ; ls|grep rr-|while read -r line; do cat $line/res/rr.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > rr_latencies_global.csv
echo "rr latencies distri"
{ echo "hs,type,delta";ls|grep rr-|while read -r line; do cat $line/res/rr.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > rr_latencies_distri.csv
echo "rrh latencies global"
{ echo "delta" ; ls|grep rrh-|while read -r line; do cat $line/res/rrh.csv|grep -Po "\d*µs"|grep -Po "\d*"; done } > rrh_latencies_global.csv
echo "rrh latencies distri"
{ echo "hs,type,delta";ls|grep rrh-|while read -r line; do cat $line/res/rrh.csv|grep -Po "\d*µs"|grep -Po "\d*"|python3 ./format-data.py $line; done } > rrh_latencies_distri.csv
2019-03-28 20:13:32 +00:00