-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
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
split: implement undocumented option ---io-blksize #2864
Comments
See this comment for how to implement an option with 3 leading dashes in clap 3: #2907 (comment) |
I spent sometime analysing the
|
It probably doesn't map very well to uutils. We mostly just want it to not panic so we pass the test, which just means to make it accept the flag and then just ignore it. That being said, I think it indeed specifies the buffer size, so that could be way to actually use it. |
I created a pull request. I assume test failures are not related to the change. |
GNU split has an undocumented command-line option
---io-blksize
(note three dashes, not two). For example:I don't know what the option does, but the GNU test suite uses this option in some places so we'll need to at least accept it in order for the test suite to pass.
The text was updated successfully, but these errors were encountered: