I have a text file and I have to introduce single space after each character. The command that I am using is:
sed 's/./& /g' source.txt>output.txt
But I am not getting the output, output remains same as input. Please help me regarding this. Is this command correct?
external edit: according to the comment below, the input text is: 'pustə́_pɾemí nù_kədé ví_kɪse_pyaːɾe mɪ'
and its corrsponding output is : pustə́_pɾemí nù_kədé ví_kɪse_pyaːɾe mɪ
Instead of introducing single space after each character it is replacing single space(which is already in input)with double space.