README updates

This commit is contained in:
sharkdp 2017-05-12 14:16:34 +02:00
parent 472438d848
commit 92e2fd3d56
1 changed files with 8 additions and 6 deletions

View File

@ -1,12 +1,15 @@
# fd # 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:** `fd` is a modern, convenient and fast replacement for `find`.
* Easy syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`.
* Colored output. ## Features
* Convenient syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`.
* Colorized output.
* Regular expressions. * Regular expressions.
* Smart case: the search is case-insensitive by default, but will be * Smart case: the search is case-insensitive by default, but will be
case-sensitive if the pattern contains an uppercase character. case-sensitive if the pattern contains an uppercase character.
* Ignore hidden directories / files by default.
* The command name is *50%* shorter than `find` :-). * The command name is *50%* shorter than `find` :-).
## Examples ## Examples
@ -27,7 +30,6 @@ LICENSE
``` ```
## Build ## Build
[![Build Status](https://travis-ci.org/sharkdp/fd.svg?branch=master)](https://travis-ci.org/sharkdp/fd)
```bash ```bash
cargo build cargo build --release
``` ```