Revert "work on figuring more stuff out--may want to revert this commit"
[pspp] / parse-all-heavy
index 20370b1fea2219a5b3d64fe4e60c9bc2743a0ce7..757e46d200866f0174f8e828db96ab792f92ecd6 100755 (executable)
@@ -1,9 +1,10 @@
 #! /bin/sh
-heavy=`ls -1 unzipped*/*/*.bin | grep -v light`
+heavy=`ls -1 unzipped/*/*.bin | grep -v light`
 
 for d in $heavy; do
-    echo $d
-    ./dump2 < $d
-    echo
-    echo
+    if ! ./dump2 < $d > /dev/null 2>&1; then
+       echo $d
+       ./dump2 < $d
+       echo
+    fi
 done