6
votes
7answers
1k views
Grep and Sed Equivalent for XML Command Line Processing
When doing shell scripting, typically data will be in files of single line records like csv. It's really simple to handle this data with grep and sed. But I have to deal w …
0
votes
1answer
248 views
Add XML namespace to existing document in ruby
I need to add an element to an existing XML document which uses a namespace that doesn't exist in the original. How do I do this?
Ideally I would like to use REXML for portability, but any …
2
votes
Grep and Sed Equivalent for XML Command Line Processing
At the moment, the best solution I've found is hpricot, which provides
XPath & C …
2
votes
0
votes
Add XML namespace to existing document in ruby
It turns out this is a dumb question. If both the initial document and the element to be added are internally consistent, then namespaces are okay. So this is equivalent to the final document:
…
