start moving beyond PMModelItemInfo
[pspp] / parse-all-xml
1 #! /bin/sh
2
3 # Parse the structure members.
4 structure_members=`find unzipped* -name 'outputViewer*.xml'`
5 if test -n "$1"; then
6     for d in $structure_members; do
7         ./parse-xml $d "$@"
8     done | sort | uniq -c
9 fi