1
0
mirror of https://github.com/sharkdp/fd synced 2024-07-05 09:19:11 +00:00
fd/README.md

29 lines
839 B
Markdown
Raw Normal View History

2017-05-12 09:50:03 +00:00
# fd
2017-05-12 12:16:34 +00:00
[![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`.
2017-05-09 21:45:02 +00:00
2017-05-12 12:16:34 +00:00
## Features
* Convenient syntax: `fd PATTERN` instead of `find -iname '*PATTERN*'`.
* Colorized output.
2017-05-09 21:45:02 +00:00
* Regular expressions.
2017-05-12 11:32:30 +00:00
* Smart case: the search is case-insensitive by default, but will be
case-sensitive if the pattern contains an uppercase character.
2017-05-12 12:16:34 +00:00
* Ignore hidden directories / files by default.
2017-05-12 17:21:26 +00:00
* Unicode-aware.
2017-05-12 09:50:03 +00:00
* The command name is *50%* shorter than `find` :-).
2017-05-09 21:29:14 +00:00
2017-05-12 22:05:00 +00:00
## Demo
<a href="https://asciinema.org/a/120318" target="_blank"><img src="https://asciinema.org/a/120318.png" width="600" align="center" /></a>
2017-05-09 21:35:34 +00:00
2017-05-09 21:29:14 +00:00
## Build
```bash
2017-05-12 12:16:34 +00:00
cargo build --release
2017-05-09 21:29:14 +00:00
```
2017-05-12 22:05:00 +00:00
## Install
```
cargo install
```
The release page also includes precompiled binaries for Linux.