From 1268e982f6647a182547bccbde8d98d79f1950a5 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sat, 9 Sep 2017 15:40:32 +0200 Subject: [PATCH] Add --dereference as an alias for --follow --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index de4f04f..d917ec9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -338,7 +338,8 @@ fn main() { .arg(Arg::with_name("follow") .long("follow") .short("L") - .help("Follow symlinks")) + .help("Follow symlinks") + .alias("dereference")) .arg(Arg::with_name("null_separator") .long("print0") .short("0")