X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=parse-all-xml;h=a91f68eab6a4e95ca8f1e85b9d3d0c7146ca9654;hb=7674958d6669183799289f701e1148b6903b801a;hp=8b1fc366f692275c045a6bd1a943f144ef0876af;hpb=a997c6cf917d592722d9850bbf63437d4ba1487e;p=pspp diff --git a/parse-all-xml b/parse-all-xml index 8b1fc366f6..a91f68eab6 100755 --- a/parse-all-xml +++ b/parse-all-xml @@ -9,9 +9,14 @@ lightTables=`ls -1 unzipped/*/*.xml |grep -vE 'notes|table|warning|chart|model' printf 'Structure:\n' for d in $lightTables; do ./parse-xml $d containment -done | sort | uniq | sort +done | sort | uniq -c | sort -rn printf '\nAttributes:\n' for d in $lightTables; do ./parse-xml $d attributes -done | sort | uniq | sort +done | sort | uniq -c | sort -rn + +printf '\nLabels:\n' +for d in $lightTables; do + ./parse-xml $d labels +done | sort | uniq -c | sort -rn