:::cs
=== About
>`fd` is a program to find entries in your filesystem.
It is a simple, fast and user-friendly alternative to [`find`](https://www.gnu.org/software/findutils/).
While it does not aim to support all of `find`'s powerful functionality, it provides sensible
(opinionated) defaults for a majority of use cases.

[!ref icon="git-branch" text="Github Repo"](https://github.com/sharkdp/fd)  

===
## Usage
~~~sh
fd TERM
~~~
instead of  
~~~sh
find -name TERM
~~~

### Specify file type  
With  
~~~sh
fd -t[type]
~~~  
you can filter the type of the shown files.

Possible file type:

Type | Code  
--- | ---
Files  | `f`
Directory | `d`
:::
