lean4-htt/tests/lean/copy-produced
2022-12-21 21:59:05 +01:00

7 lines
162 B
Bash
Executable file

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