mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-29 18:50:16 +00:00
11 lines
191 B
Bash
Executable file
11 lines
191 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# See ./reg-test/run
|
|
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
|