-
Notifications
You must be signed in to change notification settings - Fork 6
/
run.sh
39 lines (29 loc) · 997 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
#plot all lines in testTarball
# python3 iperf3_plot.py -f ./testTarball -o graph/all.png
#plot all lines in testTarball with boundary
python3 iperf3_plot.py -f testTarball \
-o graph/all.png \
-b [0.42,0.42,0.42M],[0.46,0.46,0.46M] \
-u 0.5 \
-l 0.45
#plot tg_server_00004,tg_server_00009 in testTarball
# python3 iperf3_plot.py -f testTarball \
# -o graph/s49.png \
# -p tg_server_00004,tg_server_00009
#plot tg_server_00004,tg_server_00009 in testTarball, plot boundary on indifidual line.
# python3 iperf3_plot.py -f testTarball \
# -o graph/s49_bound.png \
# -p tg_server_00004,tg_server_00009 \
# -u 0.5 \
# -l 0.45
#plot all lines in testTarball except tg_server_00004,tg_client_00009
# python3 iperf3_plot.py -f testTarball \
# -o graph/s1419.png \
# -n tg_server_00004,tg_server_00009
#plot all lines in testTarball except tg_server_00009
# python3 iperf3_plot.py -f testTarball \
# -o graph/s09.png \
# -n tg_server_00009 \
# -u 0.5 \
# -l 0.45