1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

fix help message in chgrp

This commit is contained in:
m11o 2023-05-04 08:41:56 +09:00
parent a97199f72a
commit a822890939
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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)> {