mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-17 16:38:54 +00:00
10 lines
170 B
Bash
Executable file
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
|