mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-04-20 03:01:31 -04:00
11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in 0 1; do
|
|
IFS=""
|
|
log="yao-$*-$i"
|
|
IFS=" "
|
|
$prefix ./yao-player.x -p $i $* | tee -a logs/$log & true
|
|
done
|
|
|
|
wait || exit 1
|