lean4-htt/tests/lean/copy-produced
2021-01-15 16:27:59 +01:00

7 lines
142 B
Bash
Executable file

#!/usr/bin/env bash
root="$(realpath $(dirname $0))"
cd ${1:-$PWD}
for f in *.produced.out; do
cp $f "$root/${f/produced/expected}"
done