7e945c6667
Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1247
15 lines
378 B
Bash
Executable File
15 lines
378 B
Bash
Executable File
#!/bin/bash
|
|
|
|
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $script_dir
|
|
|
|
output_dir=snapshots
|
|
|
|
if [ -d $output_dir ]; then
|
|
rm -rf $output_dir
|
|
fi
|
|
|
|
NUM_MACHINES="$( cat card_fraud.py | grep -m1 "NUM_MACHINES" | tail -c 2 )"
|
|
|
|
../../../build_release/tests/manual/card_fraud_generate_snapshot --config config.json --num-workers $NUM_MACHINES --dir $output_dir
|