2021-03-27 09:41:55 +08:00

7 lines
124 B
Bash
Executable File

#!/bin/bash
echo "Spawning 100 processes"
for i in {1..100} ;
do
( cargo run --example client -- /tmp/test.ipc & )
done