7 lines
162 B
Bash
Executable file
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
|