Better get my metaphorical red pen out... :)
]]>grep 'UserId="4177"' posthistory.xml | grep 'PostHistoryTypeId="[45]"' > dredits.txt
grep 'UserId="4177"' posthistory.xml | grep 'PostHistoryTypeId="1"' | grep -o 'PostId="[0-9]*"' | grep -o '[0-9]*' > drposts.txt
for x in `cat drposts.txt`; do grep -v "PostId=\"$x\"" dredits.txt > tmp.txt; mv tmp.txt dredits.txt; done
wc -l dredits.txt
The first line builds a list of all edits to bodies or titles you've made (PostHistoryTypeIds 4 or 5). The second builds a list of all the PostIds you own (i.e. that were first posted by you). The third strips out the edits to posts you own.
]]>I'm sure I'm well on the way to getting this (relatively rare!) badge. Sometimes I think, 'surely I've edited a hundred entries', but then I think, 'I haven't counted and it's probably not that many'.
Is this sort of information visible to über-users? It's not in the public dumps.
If I'm being silly, please tell me and I will be patient, yes, patient.... My time will come :)
]]>