blob: 31727d10275adb4123fc72df9a275f2544eeaf78 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/ruby -w
require "rexml/document"
xml = File.read(ARGV[0])
# REXML::Document.entity_expansion_limit = 1000
xmldoc = REXML::Document.new(xml)
data = xmldoc.root.text
#puts data.length
puts data
|