A startup from Germany.
Speed
fd is optimized for speed and can outperform traditional tools like find due to its use of parallelism and optimized algorithms.
Ease of Use
fd has a simpler and more user-friendly syntax compared to find, making it easier to learn and use.
Colorized Output
fd provides colorized output by default, making it easier to differentiate between file types and enhancing readability.
Smart Case
fd enables smart case detection by default, meaning searches are case-insensitive unless the pattern includes an uppercase letter.
Defaults to Ignoring Hidden Files
By default, fd ignores hidden files and directories, as well as files specified in .gitignore, helping to narrow down search results to relevant files.
Cross-Platform Support
fd supports multiple platforms including Linux, macOS, and Windows, making it versatile for different development environments.
Yes, fd (github.com) is generally considered good, particularly for its speed, ease of use, and modern features that enhance productivity over the traditional 'find' command.
We have collected here some useful links to help you find out if fd is good.
Check the traffic stats of fd on SimilarWeb. The key metrics to look for are: monthly visits, average visit duration, pages per visit, and traffic by country. Moreoever, check the traffic sources. For example "Direct" traffic is a good sign.
Check the "Domain Rating" of fd on Ahrefs. The domain rating is a measure of the strength of a website's backlink profile on a scale from 0 to 100. It shows the strength of fd's backlink profile compared to the other websites. In most cases a domain rating of 60+ is considered good and 70+ is considered very good.
Check the "Domain Authority" of fd on MOZ. A website's domain authority (DA) is a search engine ranking score that predicts how well a website will rank on search engine result pages (SERPs). It is based on a 100-point logarithmic scale, with higher scores corresponding to a greater likelihood of ranking. This is another useful metric to check if a website is good.
The latest comments about fd on Reddit. This can help you find out how popualr the product is and what people think about it.
I know that if you want `fd` (https://github.com/sharkdp/fd) you need to `apt install fd-find` and which installs the binary `fdfind` (!). - Source: Hacker News / about 2 months ago
Fd is a friendlier, faster alternative to find, with sensible defaults and clean output. - Source: dev.to / 2 months ago
Fd is also great and I install it everywhere. https://github.com/sharkdp/fd. - Source: Hacker News / over 1 year ago
It's not just the OS itself, where some of the slowness can at least be explained by the silo-ed nature of development and the large amount of moving parts. But even when MS gives a small-ish team free reign and a fresh start, the software is just agonizingly slow and buggy. Example 1: new PowerToys https://github.com/microsoft/PowerToys/ and has not improved since Win7. Who cares, nobody ever searches for files,... - Source: Hacker News / over 1 year ago
In case people were curious: https://github.com/sharkdp/fd. - Source: Hacker News / over 1 year ago
Life is too short to deal with bad Interfaces, I just use https://github.com/sharkdp/fd instead find ./ -maxdepth 2 -name 'abc' becomes fd abc -d 2 ./. - Source: Hacker News / over 1 year ago
Perhaps interesting (for some) to note that hyperfine is from the same author as at least a few other "ne{w,xt} generation" command line tools (that could maybe be seen as part of "rewrite it in Rust", but I don't want to paint the author with a brush they disagree with!!): fd (find alternative; https://github.com/sharkdp/fd), and hexyl (hex viewer; - Source: Hacker News / over 1 year ago
However, if it catches too many typos in changelogs/README instead of the actual code, try using the fd command to specify file extensions or exclude directories. For example, the following command searches only for .cr files and excludes the lib directory:. - Source: dev.to / over 1 year ago
Oh right, we didn't know this, most of the tools install guides have nix-env like fd, lychee, gtrash, etc and others we listed which we just use for installation. https://github.com/lycheeverse/lychee?tab=readme-ov-file#nixos https://github.com/umlx5h/gtrash?tab=readme-ov-file#nixpkgs-.... - Source: Hacker News / almost 2 years ago
If you want to integrate fzf with rg, fd, bat to fuzzy find files, directories or ripgrep the content of a file and preview using bat, but the fzf document only has commands for Linux shell (bash,...), and you want to achieve that on your Windows Machine using Powershell, this post may be for you. - Source: dev.to / about 2 years ago
Ripgrep: A super-fast file searcher. You can install it using your system's package manager (e.g., brew install ripgrep on macOS). Fd: Another blazing-fast file finder. Installation instructions can be found here: https://github.com/sharkdp/fd. - Source: dev.to / over 2 years ago
Hyperfine is such a great tool that it's one of the first I reach for when doing any sort of benchmarking. I encourage anyone who's tried hyperfine and enjoyed it to also look at sharkdp's other utilities, they're all amazing in their own right with fd[1] being the one that perhaps get the most daily use for me and has totally replaced my use of find(1). [1]: - Source: Hacker News / over 2 years ago
You call it with `n` and get an interactive fuzzy search for your directories. If you do `n https://github.com/sharkdp/fd. - Source: Hacker News / over 2 years ago
Many (most?) of them have been overhauled with success. For find there is fd[1]. There's batcat, exa (ls), ripgrep, fzf, atuin (history), delta (diff) and many more. Most are both backwards compatible and fresh and friendly. Your hardwon muscle memory still of good use. But there's sane flags and defaults too. It's faster, more colorful (if you wish), better integration with another (e.g. exa/eza or aware of git... - Source: Hacker News / over 2 years ago
AFAIK there is a find replacement with sane defaults: https://github.com/sharkdp/fd , a lot of people I know love it. However, I already have this in my muscle memory:. - Source: Hacker News / almost 3 years ago
> without zsh globs I have to remember find syntax My "solution" to this is using https://github.com/sharkdp/fd (even when in zsh and having glob support). I'm not sure if using a tool that's not present by default would be suitable for your use cases, but if you're considering alternate shells, I suspect you might be. - Source: Hacker News / almost 3 years ago
Nice to see other alternatives to find. I personally use fd (https://github.com/sharkdp/fd) a lot, as I find the UX much better. There is one thing that I think could be better, around the difference between "wanting to list all files that follow a certain pattern" and "wanting to find one or a few specific files". Technically, those are the same, but an issue I'll often... - Source: Hacker News / almost 3 years ago
Looking at the Unix to Plan 9 translation [1] gives me a different opinion. To name one egregious example, omitting find(1) in favor of piping du(1) (what is supposed to be a disk usage analyzer) to grep(1) is not an improvement; it's just user-unfriendliness in service of Rob Pike's minimalist aesthetics. (Contrary to popular belief, find(1) is not a particularly "bloated" program; Rust's "fd" implementation is... - Source: Hacker News / about 3 years ago
You could also use fd, which is faster and can find by extention e.g. Fd -e html. Source: about 3 years ago
Fd, the efficient and user-friendly filesystem search tool that offers a simple and fast alternative to the traditional "find" command. Designed to provide a streamlined search experience, fd prioritizes speed and ease of use while offering sensible defaults for most common use cases. While it may not encompass all the advanced features of "find," fd's optimized approach delivers quick and intuitive file... - Source: dev.to / about 3 years ago
I've been using this little script, but it's using fd:. Source: about 3 years ago
Do you know an article comparing fd to other products?
Suggest a link to a post with product alternatives.
Is fd good? This is an informative page that will help you find out. Moreover, you can review and discuss fd here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.