Skip to content

Commit 3cca3d5

Browse files
committed
Add run.sh to spawn multiple instances
1 parent 37f8b62 commit 3cca3d5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

run.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
trap 'kill 0' EXIT
3+
for i in {1..5}
4+
do
5+
./build/reno.x86_64 &
6+
done
7+
wait

0 commit comments

Comments
 (0)