format_xml.sh 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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$'|grep -v -e 'items/Tc.xml' -e 'monster/Monster.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. git diff --name-only HEAD 策划脚本| grep '\.xml$'|xargs sed -b -i \
  26. -e '/^ *<Window\(Height\|Width\|TopX\|TopY\)>/d'
  27. # /usr/bin/find 策划脚本 -name '*.xml' | xargs sed -b -i \
  28. git diff --name-only HEAD 策划脚本| grep '\.xml$'|grep -v -e 'items/Tc.xml' -e 'monster/Monster.xml'|xargs sed -b -i \
  29. -e '/^ *<\/Table>/a<WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">'\
  30. '<Unsynced\/> <FrozenNoSplit\/> <SplitHorizontal>3<\/SplitHorizontal> <TopRowBottomPane>3<\/TopRowBottomPane> <SplitVertical>1<\/SplitVertical>'\
  31. '<LeftColumnRightPane>1<\/LeftColumnRightPane> <ActivePane>0<\/ActivePane>'\
  32. '\n<\/WorksheetOptions>'
  33. # /usr/bin/find 策划脚本 -name '*.xml' | while read n;
  34. git diff --name-only HEAD 策划脚本| grep '\.xml$'|grep -v -e 'items/Tc.xml' -e 'monster/Monster.xml'| while read n ;
  35. do
  36. awk -f style.awk "$n" > awk.tmp
  37. mv awk.tmp "$n"
  38. done
  39. git diff --name-only HEAD 策划脚本| grep '\.xml$'|grep -v -e 'items/Tc.xml' -e 'monster/Monster.xml'|xargs sed -b -i \
  40. -e 's/ x:Family="[^"]*"//g' \
  41. -e 's/ss:Data ss:Type="String" xmlns="http:[^"]*">\(.*\)<\/ss:Data>/Data ss:Type="String">\1<\/Data>/g' \
  42. -e '/^ *<Cell[ >].*<\/Cell>/s/ ss:StyleID="\w\+"//g'