Eureka!
Charly's Column – find and fd
Fd is an uncomplicated find replacement that discovers lost treasures in the filesystem in next to no time. Charly would love to deploy an amazing tool like this in the analog world of his office.
I'm not very good at sorting things sensibly and then finding them again – both in my office and on my computers' filesystems. For the latter, at least I have electronic help in the form of tools like find
and, more recently, fd
.
The find
command existed on Unix systems long before Linux was invented – in fact, it's older than most of the people who use it. On many of my systems, there is a directory named /test
where I try things out. Anything that proves useful is sent to Git; the rest just hangs around gathering dust until the cron job in Listing 1 sweeps it away without write access after 365 days.
Listing 1
Crontab Entry
find /test/* -mtime +365 -exec rm {} \;
While doffing a hat to the now impressive power of the GNU implementation of find
[1], you still sometimes find yourself wishing for a tool that can perhaps do a little less, but one that is more intuitive to use. This is where fd
[2] jumps into the breach. The compact younger sibling of find
, fd
has already made its way into many distributions, but often only recently. In Ubuntu, it is available starting with version 19.04, for example.
After installing fd
on my test Ubuntu, I now have an fdfind
command. But the developers make it quite clear that their tool is named fd
and use this name in all the examples. In order to permanently teach my system the short form, I just added an alias fd=find
entry to my .bashrc
.
Quickly perusing the man page reveals that fd
can definitely do less than find
, but it does what it does well, intuitively, and quickly. Typing fd
without any further parameters returns the current directory's contents including all its subfolders, but without the hidden files and directories – like ls
, but recursively. If the environment variable LS_COLOR
is set (which is the default on most systems), the output will be in color.
Things become more interesting if you are searching for a file name or name component. In Figure 1, I told fd
to search the root directory \
for rng
. As you can see, it also found PatternGrammar.txt
(at the very bottom). This is because fd
is not case-sensitive by default. However, if an uppercase letter is stipulated as the search term, it switches its behavior and only returns case-specific results.
You can search for file extensions with the -e
parameter. For example, to find all PNG images in and below the current directory, just type:
fd -e png
I use regular expressions for fine tuning. By way of an example, the command
fd '^a.*png$'
finds file names that start with a
and end with png
. The GitHub page [2] for the tool explains many more applications and parameters.
Now all I really need is a physical fd
counterpart to tidy up my office …
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.