@@ -0,0 +1,8 @@
+#!/bin/sh
+
+readonly BASE_DIR="$(dirname $0)"
+$BASE_DIR/getData.sh &&
+ $BASE_DIR/split-flows.sh &&
+ $BASE_DIR/match-flows.sh
@@ -0,0 +1,11 @@
+readonly BASE_DIR="$(dirname $(realpath $0))"
+readonly FLOW_DIR="$BASE_DIR/flows/"
+readonly PCAP_DIR="$BASE_DIR/packets/"
+readonly PCAPS="$PCAP_DIR/*.pcap"
+readonly SEPERATOR="$BASE_DIR/../src/flow-seperator/flow-seperator"
+cd "$FLOW_DIR"
+"$SEPERATOR" $PCAPS
+cd -