Size: 370
Comment: converted to 1.6 markup
|
Size: 393
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 15: | Line 15: |
---- CategoryShell |
How can I insert a blank character after each character?
sed 's/./& /g'
Example:
$ echo "testing" | sed 's/./& /g' t e s t i n g
For more examples of sed 1-liners, see sed 1-liners or the sed FAQ.