File size: 798 Bytes
2795186 |
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 |
#!/usr/bin/env bash
if [[ $# -lt 1 ]]; then
echo "Usage: sh $0 [ConfJSON] [LogFile(Optional)]"
exit 1
fi
CONF_JSON=$1
OUTPUT_LOG=${2:-/dev/null}
EDGE_RATIO=$3
echo "Configuration JSON file: ${CONF_JSON}"
echo "Output Log file: ${OUTPUT_LOG}"
SHELL_PROC=$$
function failed() {
echo "Failed: $1" >&2
kill $SHELL_PROC # Exit this script
}
function run(){
(time $1 || failed "$1") 2>&1 | tee -a "$OUTPUT_LOG"
}
run "python3 scripts/transaction_graph_generator.py ${CONF_JSON} ${EDGE_RATIO}"
run "sh scripts/run_AMLSim.sh ${CONF_JSON}"
run "python3 scripts/convert_logs.py ${CONF_JSON}"
#python3 scripts/validation/validate_alerts.py "${CONF_JSON}" 2>&1 | tee -a "${OUTPUT_LOG}"
#python3 scripts/visualize/plot_distributions.py "${CONF_JSON}" 2>&1 | tee -a "${OUTPUT_LOG}"
|