We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To help using terrafmt blocks in toolchains, add the option to use a null separator. This would allow e.g. piping to xargs -0 ...
terrafmt blocks
xargs -0 ...
There doesn't seem to be consistency between existing tools:
find
-print0
grep
-Z
--null
sort
-z
--zero-terminated
I propose using --zero-terminated for the long option and -z for the short option, or possibly -0.
-0
The text was updated successfully, but these errors were encountered:
blocks
Successfully merging a pull request may close this issue.
To help using
terrafmt blocks
in toolchains, add the option to use a null separator. This would allow e.g. piping toxargs -0 ...
There doesn't seem to be consistency between existing tools:
find
uses-print0
grep
uses-Z
,--null
sort
uses-z
,--zero-terminated
I propose using
--zero-terminated
for the long option and-z
for the short option, or possibly-0
.The text was updated successfully, but these errors were encountered: