format_xml.sh 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. export LANG=zh_CN.UTF-8@cjknarrow
  2. git config core.quotepath 0
  3. # /usr/bin/find 策划脚本 -name '*.xml' | xargs sed -b -i \
  4. git diff --name-only HEAD 策划脚本| grep '\.xml$'|xargs sed -b -i \
  5. -e '/^ *<Active\(Sheet\|Row\|Col\)>/d' \
  6. -e '/^ *<\(TopRowBottom\|LeftColumnRight\)Pane>/d' \
  7. -e '/^ *<Selected\/>/d' \
  8. -e '/^ *<Window\(Height\|Width\|TopX\|TopY\)>/d' \
  9. -e '/^ *<\(Last\)*Author>/d' \
  10. -e '/^ *<TopRowVisible/d' \
  11. -e '/^ *<LastSaved/d' \
  12. -e '/^ *<FirstVisibleSheet/d' \
  13. -e '/^ *<LeftColumnVisible/d' \
  14. -e '/<Panes>/,/<\/Panes>/d' \
  15. -e '/<Table */,/>/s/ ss:StyleID="\w\+"//' \
  16. -e '/<Column .*\/>/d' \
  17. -e '/<Column /,/\/>/d' \
  18. -e '/<ConditionalFormatting xmlns/,/<\/ConditionalFormatting>/d' \
  19. -e '/<WorksheetOptions xmlns/,/<\/WorksheetOptions>/d' \
  20. -e '/^ *<Cell[ >].*<\/Cell>/s/ ss:StyleID="\w\+"//g' \
  21. -e '/^ *<Cell .*[^C][^e][^l][^l]$/,/<\/Cell>/s/ ss:StyleID="\w\+"//g' \
  22. -e '/^ *<Table /,/<\/Table>/s/ x:CharSet="[0-9]\+"//g' \
  23. -e '/^ *<Row /s/\( ss:StyleID=\)"\w\+"/\1"s1"/g' \
  24. -e '/^ *<Split/d'
  25. # /usr/bin/find 策划脚本 -name '*.xml' | xargs sed -b -i \
  26. git diff --name-only HEAD 策划脚本| grep '\.xml$'|xargs sed -b -i \
  27. -e '/^ *<\/Table>/a<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">'\
  28. '<Unsynced\/> <FrozenNoSplit\/> <SplitHorizontal>3<\/SplitHorizontal> <TopRowBottomPane>3<\/TopRowBottomPane> <SplitVertical>1<\/SplitVertical>'\
  29. '<LeftColumnRightPane>1<\/LeftColumnRightPane> <ActivePane>0<\/ActivePane>'\
  30. '\n<\/WorksheetOptions>'
  31. # /usr/bin/find 策划脚本 -name '*.xml' | while read n;
  32. git diff --name-only HEAD 策划脚本| grep '\.xml$'| while read n ;
  33. do
  34. awk -f style.awk "$n" > awk.tmp
  35. mv awk.tmp "$n"
  36. done
  37. git diff --name-only HEAD 策划脚本| grep '\.xml$'|xargs sed -b -i \
  38. -e 's/ x:Family="[^"]*"//g' \
  39. -e 's/ss:Data ss:Type="String" xmlns="http:[^"]*">\(.*\)<\/ss:Data>/Data ss:Type="String">\1<\/Data>/g' \
  40. -e '/^ *<Cell[ >].*<\/Cell>/s/ ss:StyleID="\w\+"//g'