start moving beyond PMModelItemInfo
[pspp] / parse-all-heavy
index 20370b1fea2219a5b3d64fe4e60c9bc2743a0ce7..a6fce9ebef5db3becb3abc4056d03cd438d39224 100755 (executable)
@@ -1,9 +1,13 @@
 #! /bin/sh
-heavy=`ls -1 unzipped*/*/*.bin | grep -v light`
 
-for d in $heavy; do
-    echo $d
-    ./dump2 < $d
-    echo
-    echo
+make || exit $?
+for d in unzipped*/*/*.bin; do
+    case $d in
+        *light*) continue ;;
+    esac
+    if ! ./dump2 < $d > /dev/null; then
+       echo $d
+#./dump2 < $d >/dev/null
+       echo
+    fi
 done