I have a file with contents like this:
name^Agroup^Ahost
name^Agroup^Ahost
name^Agroup^Ahost
and I need it to be like this:
name group host
name group host
name group host
Trying the following, but none working:
sed -i 's/\^A/ /g' thefile.file
sed -i 's/^A/ /g' thefile.file
Help?