Created
May 22, 2023 09:17
-
-
Save ahandsel/7abc92d6d3ec50b9112ce9d1f5433ab5 to your computer and use it in GitHub Desktop.
Run markdown-link-check to all Markdown files in the current folder while skipping node_modules folder
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
find . -name \*.md -not -path "./node_modules/*" -print0 | xargs -0 -n1 markdown-link-check -p -q | |
# Install markdown-link-check first | |
# npm install -g markdown-link-check |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment