1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

chgrp: forward to chown

chgrp does mostly the same as chown.
By making chown a bit more configurable we can reuse its code for chgrp.
This commit is contained in:
Michael Debertol 2021-08-14 20:55:04 +02:00
parent 68c9bfa658
commit 7153a595c6
7 changed files with 141 additions and 337 deletions

View file

@ -43,7 +43,7 @@ fn test_invalid_group() {
.arg("__nosuchgroup__")
.arg("/")
.fails()
.stderr_is("chgrp: invalid group: __nosuchgroup__");
.stderr_is("chgrp: invalid group: '__nosuchgroup__'");
}
#[test]