mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 12:51:58 +01:00
12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in ../testemails/raw/*; do
|
|
./test $i > aa;
|
|
diff aa ../testemails/parsed/`basename $i`;
|
|
if [ $? -eq 0 ]; then echo OK; else echo `basename $i`": ERROR"; fi
|
|
done
|
|
|
|
rm -f aa
|
|
|
|
|