mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-08-03 14:37:45 +00:00
Replace UTF-8 ellipsis character w/ ASCII periods.
This commit is contained in:
parent
98a86e60c8
commit
2ef14832dc
2 changed files with 3 additions and 3 deletions
|
@ -48,7 +48,7 @@ pub fn uumain(args: Vec<String>) -> i32 {
|
||||||
|
|
||||||
opts.optopt("u", "user", "User (ID or name) to switch before running the program", "USER");
|
opts.optopt("u", "user", "User (ID or name) to switch before running the program", "USER");
|
||||||
opts.optopt("g", "group", "Group (ID or name) to switch to", "GROUP");
|
opts.optopt("g", "group", "Group (ID or name) to switch to", "GROUP");
|
||||||
opts.optopt("G", "groups", "Comma-separated list of groups to switch to", "GROUP1,GROUP2…");
|
opts.optopt("G", "groups", "Comma-separated list of groups to switch to", "GROUP1,GROUP2...");
|
||||||
opts.optopt("", "userspec", "Colon-separated user and group to switch to. \
|
opts.optopt("", "userspec", "Colon-separated user and group to switch to. \
|
||||||
Same as -u USER -g GROUP. \
|
Same as -u USER -g GROUP. \
|
||||||
Userspec has higher preference than -u and/or -g", "USER:GROUP");
|
Userspec has higher preference than -u and/or -g", "USER:GROUP");
|
||||||
|
@ -209,7 +209,7 @@ fn help_menu(options: Options) {
|
||||||
let msg = format!("{0} v{1}
|
let msg = format!("{0} v{1}
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
{0} [OPTION]… NEWROOT [COMMAND [ARG]…]
|
{0} [OPTION]... NEWROOT [COMMAND [ARG]...]
|
||||||
|
|
||||||
Run COMMAND with root directory set to NEWROOT.
|
Run COMMAND with root directory set to NEWROOT.
|
||||||
If COMMAND is not specified, it defaults to '$(SHELL) -i'.
|
If COMMAND is not specified, it defaults to '$(SHELL) -i'.
|
||||||
|
|
|
@ -123,7 +123,7 @@ fn show_usage(opts: &getopts::Options) {
|
||||||
version();
|
version();
|
||||||
println!("");
|
println!("");
|
||||||
println!("Usage:");
|
println!("Usage:");
|
||||||
println!(" {} [-s|--strip] [-z|--zero] FILENAME…", NAME);
|
println!(" {} [-s|--strip] [-z|--zero] FILENAME...", NAME);
|
||||||
println!(" {} -V|--version", NAME);
|
println!(" {} -V|--version", NAME);
|
||||||
println!(" {} -h|--help", NAME);
|
println!(" {} -h|--help", NAME);
|
||||||
println!("");
|
println!("");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue