I'm trying to edit a text file in Linux. I need to replace all sentences ending in a single space with double spaces. I'm not sure what I'm doing wrong, but it's not fixing all of them, just some.
sed 's/\.\s/. /g' examplefile.txt
Any nudge in the right direction? Thanks!