Merge pull request #5833 from sylvestre/cut-multiple

cut: allow the same option to be passed multiple times
This commit is contained in:
Daniel Hofstetter 2024-01-13 16:58:04 +01:00 committed by GitHub
commit ac27b6c4b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -510,6 +510,7 @@ pub fn uu_app() -> Command {
.about(ABOUT)
.after_help(AFTER_HELP)
.infer_long_args(true)
.args_override_self(true)
.arg(
Arg::new(options::BYTES)
.short('b')

View file

@ -255,3 +255,13 @@ fn test_equal_as_delimiter3() {
.succeeds()
.stdout_only_bytes("abZcd\n");
}
#[test]
fn test_multiple() {
let result = new_ucmd!()
.args(&["-f2", "-d:", "-d="])
.pipe_in("a=b\n")
.succeeds();
assert_eq!(result.stdout_str(), "b\n");
assert_eq!(result.stderr_str(), "");
}