github-action-markdown-link-check
github-action-markdown-link-check copied to clipboard
upstream recommends xargs over `-exec`
trafficstars
see https://github.com/tcort/markdown-link-check
"Avoid using find -exec because it will swallow the error from each consecutive run. Instead, use xargs:
find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check
"