mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 23:02:38 +00:00
Merge pull request #4824 from m11o/fix-chgrp-markdown-file
fix help message in chgrp
This commit is contained in:
commit
249b80abff
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
```
|
||||
chgrp [OPTION]... GROUP FILE...
|
||||
[OPTION]... --reference=RFILE FILE...
|
||||
chgrp [OPTION]... --reference=RFILE FILE...
|
||||
```
|
||||
|
||||
Change the group of each FILE to GROUP.
|
||||
|
|
|
@ -18,7 +18,7 @@ use clap::{crate_version, Arg, ArgAction, ArgMatches, Command};
|
|||
use std::fs;
|
||||
use std::os::unix::fs::MetadataExt;
|
||||
|
||||
static ABOUT: &str = help_about!("chgrp.md");
|
||||
const ABOUT: &str = help_about!("chgrp.md");
|
||||
const USAGE: &str = help_usage!("chgrp.md");
|
||||
|
||||
fn parse_gid_and_uid(matches: &ArgMatches) -> UResult<(Option<u32>, Option<u32>, IfFrom)> {
|
||||
|
|
Loading…
Reference in a new issue