Skip to content

Instantly share code, notes, and snippets.

@manfromth3m0oN
Created May 23, 2022 08:15
Show Gist options
  • Save manfromth3m0oN/51fa8b15a856cd868a2aec0c871fe0f6 to your computer and use it in GitHub Desktop.
Save manfromth3m0oN/51fa8b15a856cd868a2aec0c871fe0f6 to your computer and use it in GitHub Desktop.
Markdown Wordcount Bash
sed '/^```/,/^```/d' | sed 's/#\+ //g;s/\\\w\+\({\w\+}\)\?//g;s/\[\w\]//g;s/{[[:digit:]]\.[[:digit:]]\(cm\)\?}//g;s/!\[\w\+\](\w\+)//g;s/!\[[A-Z a-z]\+\].\+//g;/^[[:space:]]*$/d;/`*\+`/d' | tr -d "{}|-()[]!:>" | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment