mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 11:02:00 +01:00
12 lines
203 B
Bash
12 lines
203 B
Bash
|
#!/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
|
||
|
|
||
|
|