summaryrefslogtreecommitdiff
path: root/apps/plugins/wikiviewer/converter/sort_xmlentities.sh
blob: 1a67a775ad3bc34f2a8f14a0bbc74f6b11704fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# Helper script which sorts xmlentities.h

START=$(grep -m 1 -nF 'ENT("' xmlentities.h | sed 's/\([0-9]*\).*/\1/')
END=$(grep -nF 'ENT("' xmlentities.h | tail -n 1 | sed 's/\([0-9]*\).*/\1/')

head -n $(($START - 1)) xmlentities.h > xmlentities.h.new
grep 'ENT("' xmlentities.h | LC_ALL=C sort -b | uniq >> xmlentities.h.new
awk "NR > $END { print \$0 }" xmlentities.h >> xmlentities.h.new

rm xmlentities.h
mv xmlentities.h.new xmlentities.h