mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-10 14:08:09 -05:00
8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test -e logs || mkdir logs
|
|
prog=${1%.sch}
|
|
prog=${prog##*/}
|
|
shift
|
|
$prefix ./emulate.x $prog $* 2>&1 | tee -a logs/emulate-$prog
|