I would like to apply to a .xml file what comes within this .sh
#!/bin/bash
perl -p -i -e "s[- <][- <]g" $1
perl -p -i -e "s[> ][> - ]g" $1
perl -p -i -e "s[,][]g" $1
perl -p -i -e "s[<Concepto></Concepto>][<Concepto>SUSCRIPCION</Concepto>]g" $1
perl -p -i -e "s[> -][> -]g" $1
sed -i 's/|//g' $1
sed -i 's/*//g' $1
How could I do this?