mirror of
https://github.com/data61/MP-SPDZ.git
synced 2026-01-09 05:27:56 -05:00
10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dir="$(dirname $0)"
|
|
. "$dir"/run-common.sh
|
|
prog=${1%.sch}
|
|
prog=${prog##*/}
|
|
shift
|
|
mkdir logs 2> /dev/null
|
|
$prefix "$dir"/../emulate.x $prog $* 2>&1 | tee logs/emulate-$prog
|