Skip to content

Instantly share code, notes, and snippets.

@lktslionel
Created June 10, 2021 09:15
Show Gist options
  • Save lktslionel/4606b22656916b4431416f6e861e00ad to your computer and use it in GitHub Desktop.
Save lktslionel/4606b22656916b4431416f6e861e00ad to your computer and use it in GitHub Desktop.
[TIP] Make redirection after running a `find` followed by a `xargs` command
find src/modules \
-type d\
-not -path src/modules\
-print0 \
| $_XARGS_CMD -I module bash -c 'terraform-docs markdown "module" > "module"/README.md'
Check $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment