sed command to replace " with "
sed -ie 's/"/"/g' test.xml
sed command to replace & with &
sed -ie 's/&/&/g' test.xml
sed command to replace < with <
sed -ie 's/</</g' test.xml
sed command to replace > with >
sed -ie 's/>/>/g' test.xml