blob: 56e66b03345d8dee2ff1607358dc35676463a8ff (
plain)
1
2
3
4
5
6
7
|
#!/bin/sed -f
# sed rules that must run after the main set
# any xml tags not processed can just go away
s/<[^>]*>//g
# any xml character entities not processed can just go away
s/&[^;]*;//g
|