mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
Merge pull request #619 from jbcrail/replace-utf8-ellipsis
Replace UTF-8 ellipsis character w/ ASCII periods.
This commit is contained in:
@@ -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("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. \
|
||||
Same as -u USER -g 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}
|
||||
|
||||
Usage:
|
||||
{0} [OPTION]… NEWROOT [COMMAND [ARG]…]
|
||||
{0} [OPTION]... NEWROOT [COMMAND [ARG]...]
|
||||
|
||||
Run COMMAND with root directory set to NEWROOT.
|
||||
If COMMAND is not specified, it defaults to '$(SHELL) -i'.
|
||||
|
||||
@@ -123,7 +123,7 @@ fn show_usage(opts: &getopts::Options) {
|
||||
version();
|
||||
println!("");
|
||||
println!("Usage:");
|
||||
println!(" {} [-s|--strip] [-z|--zero] FILENAME…", NAME);
|
||||
println!(" {} [-s|--strip] [-z|--zero] FILENAME...", NAME);
|
||||
println!(" {} -V|--version", NAME);
|
||||
println!(" {} -h|--help", NAME);
|
||||
println!("");
|
||||
|
||||
Reference in New Issue
Block a user