I would like to replace the space characters inside XML file as for example:
from:
<UserDescription>
<userName>Test User 1</userName>
</UserDescription>
to:
<UserDescription>
<userName>Test_User_1</userName>
</UserDescription>
Prefer using sed as this is the most feasible option at this moment.
Appreciate for any suggestion or feedback. Thanks