#!/bin/bash SAMPLER="bsampler" SAMPLER+=" --id bsampler1" SAMPLER+=" --msg-size 1000000" #SAMPLER+=" --num-msgs 1000" SAMPLER+=" --config-json-file @CMAKE_BINARY_DIR@/bin/config/benchmark.json" xterm -geometry 80x23+0+0 -hold -e @CMAKE_BINARY_DIR@/bin/$SAMPLER & SINK="sink" SINK+=" --id sink1" #SINK+=" --num-msgs 1000" SINK+=" --config-json-file @CMAKE_BINARY_DIR@/bin/config/benchmark.json" xterm -geometry 80x23+500+0 -hold -e @CMAKE_BINARY_DIR@/bin/$SINK &