diff options
author | Determinant <[email protected]> | 2018-07-16 04:13:57 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-16 04:13:57 -0400 |
commit | efd49718dfbb6c1f329e72026770b07a67348168 (patch) | |
tree | 4f29a41480c6ad42ad0fcf2b861c7acc7368b937 /run_replicas.sh |
init
Diffstat (limited to 'run_replicas.sh')
-rwxr-xr-x | run_replicas.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/run_replicas.sh b/run_replicas.sh new file mode 100755 index 0000000..c106d42 --- /dev/null +++ b/run_replicas.sh @@ -0,0 +1,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 |