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
I gave the CLI a spin as it has multithreading support in contrast to the official CLI.
I installed it via: go install github.com/wkhere/lz4/cmd/lz4c@latest, see #174
go install github.com/wkhere/lz4/cmd/lz4c@latest
There seems to be a bug in how the compression level is used from the CLI. Only level 0 is accepted without error. Otherwise, I get errors:
❯ echo "Hello\nNice" | ~/go/bin/lz4c compress -l=-1 lz4: invalid compression level: 4294967295 ❯ echo "Hello\nNice" | ~/go/bin/lz4c compress -l=1 lz4: invalid compression level: 1 ❯ echo "Hello\nNice" | ~/go/bin/lz4c compress -l=0 "M`ps �Hello Nice
There's also an integer underflow when passing -1.
-1
The text was updated successfully, but these errors were encountered:
Thanks for the report, let me have a look.
Sorry, something went wrong.
cmd/lz4c: update go.mod and fix issue #214
d9eb671
Please check with d9eb671.
Closing, plz reopen if needed.
No branches or pull requests
I gave the CLI a spin as it has multithreading support in contrast to the official CLI.
I installed it via:
go install github.com/wkhere/lz4/cmd/lz4c@latest
, see #174There seems to be a bug in how the compression level is used from the CLI. Only level 0 is accepted without error. Otherwise, I get errors:
There's also an integer underflow when passing
-1
.The text was updated successfully, but these errors were encountered: