|
|
|
|
|
by syklemil
462 days ago
|
|
> It absolutely does not matter what language this tool is written in. That goes for any tool. Eh, there are a lot of tools where it actually does kind of matter. I suspect for a lot of invocations of tools like `fd` and `rg`, they'll be done before an equivalent written in java has even had its JVM spin fully up. There's _tons_ of Java software, but it somehow never managed to make a dent in the CLI space. > To me, there is no reason to ever use “find”. If I’m on a new system, I just install fd and carry on. I guess I should finally have a look at how to replace my `find $path -name "*.$ext" -exec nvim {} +` habit … turns out it's `fd -e $ext -X "nvim" "" $path` |
|