start moving beyond PMModelItemInfo
[pspp] / parse-all-light
index 2d2c8f2f021e2265fffc76cf5c1d8a77ee29a054..836369d9f818d9cad87220b5ee7d4c2ff8112586 100755 (executable)
@@ -1,10 +1,9 @@
-#! /bin/sh
-light=`ls -1 unzipped/*/*.bin | grep light`
-
-for d in $light; do
-    if ! ./dump all < $d > /dev/null 2>&1; then
+#! /bin/bash
+make || exit 1
+for d in {unzipped3,williams,germano,smekens,unzipped,unzipped2}/*/*light*.bin; do
+    if ! ./dump $d > /dev/null; then
        echo $d
-       ./dump all < $d
+       ./dump $d
        echo
     fi
 done