From 013405d1e60761f02aeeca9b007b3c91df0ab60b Mon Sep 17 00:00:00 2001 From: Thomas Queiroz Date: Tue, 2 Nov 2021 19:18:59 -0300 Subject: [PATCH] env: change -c to -C --- src/uu/env/src/env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/env/src/env.rs b/src/uu/env/src/env.rs index 042d2c380..6d5431aa9 100644 --- a/src/uu/env/src/env.rs +++ b/src/uu/env/src/env.rs @@ -131,7 +131,7 @@ pub fn uu_app() -> App<'static, 'static> { .long("ignore-environment") .help("start with an empty environment")) .arg(Arg::with_name("chdir") - .short("c") + .short("C") // GNU env compatibility .long("chdir") .takes_value(true) .number_of_values(1)