From 92e2fd3d560d6b80f6d86c1e5cab5456e98c2470 Mon Sep 17 00:00:00 2001 From: sharkdp Date: Fri, 12 May 2017 14:16:34 +0200 Subject: [PATCH] README updates --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ec36582..ddab87a 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,15 @@ # fd -A modern, convenient and fast replacement for `find`. +[![Build Status](https://travis-ci.org/sharkdp/fd.svg?branch=master)](https://travis-ci.org/sharkdp/fd) -**Features:** -* Easy syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`. -* Colored output. +`fd` is a modern, convenient and fast replacement for `find`. + +## Features +* Convenient syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`. +* Colorized output. * Regular expressions. * Smart case: the search is case-insensitive by default, but will be case-sensitive if the pattern contains an uppercase character. +* Ignore hidden directories / files by default. * The command name is *50%* shorter than `find` :-). ## Examples @@ -27,7 +30,6 @@ LICENSE ``` ## Build -[![Build Status](https://travis-ci.org/sharkdp/fd.svg?branch=master)](https://travis-ci.org/sharkdp/fd) ```bash -cargo build +cargo build --release ```