mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-25 17:04:01 +00:00
8 lines
189 B
Bash
Executable file
8 lines
189 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# See ./reg-test/run
|
|
for arg; do
|
|
expfile=./reg-test/expected/$arg.out
|
|
outfile=./output-reg-test/$arg.out
|
|
diff -a -I '^mlr' -I '^Miller:' -I '^cat' $expfile $outfile
|
|
done
|