Skip to content

Instantly share code, notes, and snippets.

@kschach
Last active January 13, 2019 13:01
Show Gist options
  • Select an option

  • Save kschach/c653c96d9c18a5306464fbc4af2c0d03 to your computer and use it in GitHub Desktop.

Select an option

Save kschach/c653c96d9c18a5306464fbc4af2c0d03 to your computer and use it in GitHub Desktop.
Markdown word count (minus blank lines, Markdown headings, and YAML headings)
egrep -h -v '^(#|\s*$|---)' *.md | wc -w
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