blob: c106d42f94cc6c238ee81dcaf6471009dad24b5c (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/bash
for i in {0..3}; do
#valgrind ./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 &
./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 &
done
wait
|