Last active
January 13, 2019 13:01
-
-
Save kschach/c653c96d9c18a5306464fbc4af2c0d03 to your computer and use it in GitHub Desktop.
Markdown word count (minus blank lines, Markdown headings, and YAML headings)
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
| egrep -h -v '^(#|\s*$|---)' *.md | wc -w |
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
| egrep -h -v '^(#|\s*$|---|\{)' *.md | wc -w |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment