From 31c76989ad83bb4f9b3d3106218051c33f31efef Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sat, 9 Sep 2017 15:34:25 +0200 Subject: [PATCH] Change short flag for --follow to -L, see #33 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index a9f4277..de4f04f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -337,7 +337,7 @@ fn main() { .help("Do not respect .(git)ignore files")) .arg(Arg::with_name("follow") .long("follow") - .short("f") + .short("L") .help("Follow symlinks")) .arg(Arg::with_name("null_separator") .long("print0")