Improve description.
[pspp] / parse-all-light
index 5104d50d4ef9a5b896c7abf6bbb6b84f74bb5c9f..e63811cd9fb973d2405544b905ea5229098ff5f4 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; then
+#! /bin/bash
+make || exit 1
+for d in {unzipped3,williams,germano,smekens,unzipped,unzipped2}/*/*light*.bin; do
+    if ! ./dump all < $d > /dev/null; then
        echo $d
-       ./dump all < $d
+       #./dump all < $d
        echo
     fi
 done