X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=parse-all-xml;h=09ec646bef8f95bb57418be32bfe4742f7e9c8d4;hb=afb45b508e1aa6aa3bc2eba915c547178d4a4c4c;hp=c1282e03ff3bf6476afb81d3824526303762f18c;hpb=992e58c9b4d996d98e26c55151201ff1216b4d08;p=pspp diff --git a/parse-all-xml b/parse-all-xml index c1282e03ff..09ec646bef 100755 --- a/parse-all-xml +++ b/parse-all-xml @@ -1,13 +1,9 @@ #! /bin/sh -# Parse the structure members that do not represent models or graphs. -# Also skip those with borderProperties, which indicate the non-"light" -# format. -lightTables=`ls -1 unzipped/*/*.xml |grep -vE 'notes|table|warning|chart|model' \ - | xargs grep -EL '<([a-z]*:)?(model|graph|borderProperties)'` - +# Parse the structure members. +structure_members=`find unzipped* -name 'outputViewer*.xml'` if test -n "$1"; then - for d in $lightTables; do - ./parse-xml $d $1 - done | sort | uniq -c | sort -rn + for d in $structure_members; do + ./parse-xml $d "$@" + done | sort | uniq -c fi