work on figuring more stuff out--may want to revert this commit
[pspp] / parse-detail-xml
1 #! /bin/sh
2
3 # Parse the detail XML members.
4 legacyXML=`ls -1 unzipped/*/*.xml |grep -vE 'outputViewer|stats|chart|model'`
5 for d in $legacyXML; do echo $d; done | wc
6 #grep -h -o '<style id="visualizationStyle"[^>]*>' $legacyXML
7 if test -n "$1"; then
8     for d in $legacyXML; do
9         ./parse-xml $d $1
10     done
11 fi