I have a .md file where I want to move every sentence to its own line. How do I do that?
I have tried
tr '\. ' ' \n' <input.md >output.md
But that results in a new line being added to every space, which means moving every single word to its own line
@schratze \\. should work, you're escaping dot at shell, not in the chars tr sees.