-S should preserve sentences.
$ echo 'This is a sentence. this is another sentence' | stdrename --text -S
This is a sentence. this is another sentence
$ echo 'This is a sentence. this is another sentence.' | stdrename --text -S
This is a sentence this is another sentence
First case, this is another... should be This is another....
I'm not sure why having a dot at the end of the input results in all dots being removed in the second case.
-Sshould preserve sentences.First case,
this is another...should beThis is another....I'm not sure why having a dot at the end of the input results in all dots being removed in the second case.