CNWHUD/shell-frags/read_xml_dom.sh

18 lines
186 B
Bash
Raw Normal View History

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