From 750e1ed9625e4fa398fc68be7ee84a87b2edcec7 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sun, 14 May 2017 15:46:37 +0200 Subject: [PATCH] Add short command line option for --hidden, see #18 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f2ca23e..7a4ee8e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -103,7 +103,7 @@ fn main() { "case-sensitive search (default: smart case)"); opts.optflag("f", "filename", "search filenames only (default: full path)"); - opts.optflag("", "hidden", + opts.optflag("H", "hidden", "search hidden files/directories (default: off)"); opts.optflag("F", "follow", "follow symlinks (default: off)"); opts.optflag("n", "no-color", "do not colorize output (default: on)");