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
The cat command/API now accepts an offset and length.
cat
offset
length
Files bigger than 2^32 bytes can not be read because the offset is only an int not a long
int
long
offset and possibly length should accept long values.
The text was updated successfully, but these errors were encountered:
This will, unfortunately, require changes to the commands lib. However, you're absolutely right.
Sorry, something went wrong.
Hey @Stebalien, I think modifying IntOption/UintOption to Int64Option/Uint64Option maybe can solve this issue?
We'd probably want to add a type instead of replacing the existing one.
No branches or pull requests
The
cat
command/API now accepts anoffset
andlength
.Files bigger than 2^32 bytes can not be read because the
offset
is only anint
not along
offset
and possiblylength
should accept long values.The text was updated successfully, but these errors were encountered: