Reputation: 35
I would like to split text into sentences. Sentence ends with a dot and followed by whitespace character.
Upvotes: 0
Views: 1765
Reputation:
This will print each separate sentence on a new line.
awk 'BEGIN{RS="\\. "}1' file
Upvotes: 1