10 lines
122 B
Bash
10 lines
122 B
Bash
#!/bin/bash
|
|
|
|
RANK=0 python3 test_send_recv.py &
|
|
PID0=$!
|
|
RANK=1 python3 test_send_recv.py &
|
|
PID1=$!
|
|
|
|
wait $PID0
|
|
wait $PID1
|