mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-01-04 12:37:50 +08:00
7 lines
124 B
Bash
Executable File
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 |