79759318

Date: 2025-09-08 20:45:40
Score: 0.5
Natty:
Report link

As others pointed out, sed may not be the right command. However, if you really want to use sed and not any other command (awk might have been a good option) :

printf 'Hello wor=\r\nld\n' | sed -z 's/=\r\n//g'

Use -z option to handle multi-line matching.

Expected output :

Hello world
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Eternal Dreamer