Created
April 29, 2018 08:03
-
-
Save jpstroop/0e099ecbb20e7662fd22b3b8590f2464 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for md_file in $(find . -name "*.md"); do | |
gsed -r -i -e 's/([A-z])\.\s{2,3}([A-Z])/\1. \2/g' $md_file | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment