I would like to be able to replace each new lines with the letter f.
but I can't get it to work
C: \ czp>type g.g | sed -e "s/\r\n/f/g"
a aa
b bb
c cc
C: \czp>type g.g | sed -e "s/\x0D\x0A/f/g"
a aa
b bb
c cc
C: \czp>type g.g | sed -e "s/\d013\d010/f/g"
a aa
b bb
c cc
but I can't get it to work
C: \ czp>type g.g | sed -e "s/\r\n/f/g"
a aa
b bb
c cc
C: \czp>type g.g | sed -e "s/\x0D\x0A/f/g"
a aa
b bb
c cc
C: \czp>type g.g | sed -e "s/\d013\d010/f/g"
a aa
b bb
c cc
Last edited: