github-action-markdown-link-check icon indicating copy to clipboard operation
github-action-markdown-link-check copied to clipboard

upstream recommends xargs over `-exec`

Open hughperkins opened this issue 3 years ago • 0 comments
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

"

hughperkins avatar Apr 05 '22 10:04 hughperkins