I have below entry in web.xml
<context-param>
<param-name>oracle.adf.view.rich.automation.ENABLED</param-name>
<param-value>false</param-value>
</context-param>
I am doing some repackaging work using shell script and want to change the value from 'false' to 'true' only for the given param-name. How can I do it using sed/awk command? Note that there are multiple param-name and param-value entries with 'false' values which shouldn't change alongwith.