lean4-htt/tests/lean/copy-produced
2021-12-17 12:22:53 +01:00

7 lines
160 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