I have a config file as hive-site.xml
One configuration element is;
<property>
<name>hadoop.embedded.local.mode</name>
<value>true</value>
</property>
I want to change the "true" to "false" by a shell script. But in the file there are lots of configuration elements such as;
<value>true</value>
tags.
So the "sed" command I used to find and replace strings is difficult to be used here with my knowledge. Appreciate if anyone can help me with this.