mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-31 13:07:46 +00:00
Merge pull request #1192 from ProgVal/chmod-unimplemented
chmod: Remove '(unimplemented)' from the opt help.
This commit is contained in:
commit
2eaabae507
1 changed files with 3 additions and 4 deletions
|
@ -38,11 +38,10 @@ pub fn uumain(mut args: Vec<String>) -> i32 {
|
||||||
NAME
|
NAME
|
||||||
);
|
);
|
||||||
let mut opts = new_coreopts!(&syntax, SUMMARY, LONG_HELP);
|
let mut opts = new_coreopts!(&syntax, SUMMARY, LONG_HELP);
|
||||||
opts.optflag("c", "changes", "like verbose but report only when a change is made \
|
opts.optflag("c", "changes", "like verbose but report only when a change is made")
|
||||||
(unimplemented)")
|
|
||||||
// TODO: support --silent (can be done using clap)
|
// TODO: support --silent (can be done using clap)
|
||||||
.optflag("f", "quiet", "suppress most error messages (unimplemented)")
|
.optflag("f", "quiet", "suppress most error messages")
|
||||||
.optflag("v", "verbose", "output a diagnostic for every file processed (unimplemented)")
|
.optflag("v", "verbose", "output a diagnostic for every file processed")
|
||||||
.optflag("", "no-preserve-root", "do not treat '/' specially (the default)")
|
.optflag("", "no-preserve-root", "do not treat '/' specially (the default)")
|
||||||
.optflag("", "preserve-root", "fail to operate recursively on '/'")
|
.optflag("", "preserve-root", "fail to operate recursively on '/'")
|
||||||
.optopt("", "reference", "use RFILE's mode instead of MODE values", "RFILE")
|
.optopt("", "reference", "use RFILE's mode instead of MODE values", "RFILE")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue