18 lines
186 B
Bash
18 lines
186 B
Bash
function read_xml_dom ()
|
|
|
|
{
|
|
|
|
#Description: Helper function for reading xml from stdin in bash
|
|
|
|
#Arguments: none
|
|
|
|
#Returns: nothing
|
|
|
|
|
|
|
|
local IFS=\>
|
|
|
|
read -d \< ENTITY CONTENT
|
|
|
|
}
|