Wracking my brains on this to no avail! How do I substitute a "newline" character into a file? Say I have a comma separated file containing
and I want to change it to
Specifically interested in sed or the vi substitution string (for which I use :g/find this/s//change to this/g
Thanks in advance.
Greg.
Code:
a,b,c,d
Code:
a
b
c
d
Thanks in advance.
Greg.