run.sh 78 B

1234567
  1. #!/bin/sh
  2. for i in $(seq 0 $(nproc)); do
  3. taskset -c $i ./main &
  4. done
  5. wait