0a04a8b95531e46714375e3752869153b0858523
[pingpong.git] / run_scripts / tb_analysis_run.sh
1 #!/bin/sh
2
3 # tb_analysis = total bytes analysis
4 # Check input arguments - we need 2 arguments
5 if [ $# -ne 2 ]
6     then
7         echo "Usage: ia_analysis_run.sh <path-and-json-file, e.g./a/b/c/d.json> <path-to-output-file, e.g. result_ps/>"
8         exit 1
9 fi
10
11 # Check result folder and create one if it does not exist yet
12 [ -d $2 ] || mkdir $2
13
14 # Run the analysis
15 python ../parser/parse_packet_total_bytes.py $1 $2/wemo_switch WeMo_Switch 94:10:3e:36:60:09
16 python ../parser/parse_packet_total_bytes.py $1 $2/wemo_insight WeMo_Insight 14:91:82:25:10:77
17 python ../parser/parse_packet_total_bytes.py $1 $2/tplink_switch TPLink_Switch 50:c7:bf:33:1f:09
18 python ../parser/parse_packet_total_bytes.py $1 $2/dlink_switch DLink_Switch 90:8d:78:e3:81:0c
19 python ../parser/parse_packet_total_bytes.py $1 $2/amcrest_camera Amcrest_Camera 3c:ef:8c:6f:79:5a
20 python ../parser/parse_packet_total_bytes.py $1 $2/netgear_arlo_camera Netgear_Arlo_Camera 40:5d:82:2f:50:2a
21 python ../parser/parse_packet_total_bytes.py $1 $2/lifx_lightbulb_1 Lifx_LightBulb_1 d0:73:d5:12:8e:30
22 python ../parser/parse_packet_total_bytes.py $1 $2/lifx_lightbulb_2 Lifx_LightBulb_2 d0:73:d5:02:41:da
23 python ../parser/parse_packet_total_bytes.py $1 $2/philips_hue Philips_Hue 00:17:88:69:ee:e4
24 python ../parser/parse_packet_total_bytes.py $1 $2/tplink_lightbulb TPLink_LightBulb 50:c7:bf:59:d5:84
25 python ../parser/parse_packet_total_bytes.py $1 $2/nxeco_sprinkler Nxeco_Sprinkler ac:cf:23:5a:9c:e2
26 python ../parser/parse_packet_total_bytes.py $1 $2/blossom_sprinkler Blossom_Sprinkler e4:95:6e:b0:20:39
27 python ../parser/parse_packet_total_bytes.py $1 $2/dlink_alarm DLink_Alarm c4:12:f5:de:38:20
28 python ../parser/parse_packet_total_bytes.py $1 $2/dlink_motion_sensor DLink_Motion_Sensor c4:12:f5:e3:dc:17
29 python ../parser/parse_packet_total_bytes.py $1 $2/nest_thermostat Nest_Thermostat 18:b4:30:bf:34:7e
30 python ../parser/parse_packet_total_bytes.py $1 $2/amazon_echo_dot Amazon_Echo_Dot 68:37:e9:d2:26:0d
31 python ../parser/parse_packet_total_bytes.py $1 $2/smartthings_hub SmartThings_Hub d0:52:a8:a3:60:0f
32