run.sh 78 B

1234567
  1. #!/bin/bash
  2. for i in $(seq 1 $(nproc --all)); do
  3. ./server.out &
  4. done
  5. wait