mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 18:25:45 +00:00
13 lines
287 B
Bash
Executable file
13 lines
287 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# See ./reg-test/run
|
|
diff_context_flag=""
|
|
for arg; do
|
|
if [ "$arg" = "-C5" ]; then
|
|
diff_context_flag="$arg"
|
|
else
|
|
expfile=./reg-test/expected/$arg.out
|
|
outfile=./output-reg-test/$arg.out
|
|
diff -a -I '^mlr' -I '^Miller:' -I '^cat' $expfile $outfile
|
|
fi
|
|
done
|