Update README.md

This commit is contained in:
David Peter 2017-05-13 10:21:38 +02:00 committed by GitHub
parent 9aa4f0a124
commit 8e4171310a
1 changed files with 11 additions and 7 deletions

View File

@ -1,17 +1,21 @@
# fd # fd
[![Build Status](https://travis-ci.org/sharkdp/fd.svg?branch=master)](https://travis-ci.org/sharkdp/fd) [![Build Status](https://travis-ci.org/sharkdp/fd.svg?branch=master)](https://travis-ci.org/sharkdp/fd)
`fd` is a modern, convenient and fast replacement for `find`. *fd* is a simple, fast and user-friendly alternative to [*find*](https://www.gnu.org/software/findutils/).
While it does not seek to mirror all of *find*'s powerful functionality, it provides sensible (opinionated)
defaults for [80%](https://en.wikipedia.org/wiki/Pareto_principle) of the use cases.
## Features ## Features
* Convenient syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`. * Convenient syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`.
* Colorized output. * Smart case: the search is case-insensitive by default. It switches to
* Regular expressions. case-sensitive if the pattern contains an uppercase
* Smart case: the search is case-insensitive by default, but will be character[\*](http://vimdoc.sourceforge.net/htmldoc/options.html#'smartcase').
case-sensitive if the pattern contains an uppercase character. * Ignores hidden directories and files by default.
* Ignore hidden directories / files by default. * Colorized terminal output (similar to *ls*).
* Regular expressions by default.
* Unicode-aware. * Unicode-aware.
* The command name is *50%* shorter than `find` :-). * The command name is *50%* shorter[\*](https://github.com/ggreer/the_silver_searcher) than `find` :-).
## Demo ## Demo