757e46d200866f0174f8e828db96ab792f92ecd6
[pspp] / parse-all-heavy
1 #! /bin/sh
2 heavy=`ls -1 unzipped/*/*.bin | grep -v light`
3
4 for d in $heavy; do
5     if ! ./dump2 < $d > /dev/null 2>&1; then
6         echo $d
7         ./dump2 < $d
8         echo
9     fi
10 done