miller/go/accept-case
2020-11-22 12:20:33 -05:00

10 lines
170 B
Bash
Executable file

#!/bin/bash
for arg; do
src=output-reg-test/$arg.out
if [ ! -f $src ]; then
echo "Cannot find source $src" 1>&2
exit 1
fi
cp $src reg-test/expected
done