Open In App

Fzf – File Search From Linux Terminal

Fzf is a command-line general-purpose fuzzy finder tool. It is somewhat like grep. It is a cross-platform command-line tool, that helps you to search and open files quickly. Furthermore, it is open-sourced portable with no dependencies. It has supports for Vim/Neo vim plugin, key bindings, and fuzzy auto-completion. It can be used with any list; files, command history, processes, hostnames, bookmarks, git commits, etc.

Installation on the various platform through package manager :



  Package Manager Linux Distribution Command
1. APK Alpine Linux sudo apk add fzf
2. APT Debian 9+/Ubuntu 19.10+ sudo apt-get install fzf
3. Conda   conda install -c conda-forge fzf
4. DNF Fedora sudo dnf install fzf
5. Nix NixOS, etc. nix-env -iA nixpkgs.fzf
6. Pacman Arch Linux sudo pacman -S fzf
7. pkg FreeBSD pkg install fzf
8. pkg_add OpenBSD pkg_add fzf
9. XBPS Void Linux sudo xbps-install -S fzf
10. Zypper openSUSE sudo zypper install fzf

Installation using Git:

Step 1: Open up the terminal and run the following command to see if git is installed on your machine or not.

git --version

If the output looks like this, then you are good to go, or else you need to install git first on your system. You can install git by running the following command:



 sudo apt install git-all

Step 2: Clone the fzf repository using the following command:

git clone --depth 1 https://github.com/junegunn/fzf.git

cloning fzf repo

Step 3: Navigate to the cloned folder.

cd fzf

Step 4: Run the installation script using the following command.

./install

installing fzf

 

Using fzf to search and open a file:

nano is a text editor, and we are going to open the searched file in nano. And (fzf –height 40%) will open a fuzzy finder window within 40% of the screen.

nano  $(fzf --height 40% ) 

Note: we can replace nano with other utility commands like cat(used to view a file), rm(used to remove a file), kill(used to kill a running process), cd( to change directory),etc. 

In this example, we are opening a file called geeks.sh using a fuzzy finder prompt. We can use the keys to navigate through, or we can just type the name of the file that we are looking for. 

We can use the keyboard key to navigate through the list of items/files.

Using multi-select mode:

To select multiple files in finder, we open fzf in multi-select mode using -m argument. The red triangle in front of the items/files shows that these files are selected. After selecting desired files hit ENTER to display their path location.

fzf -m

selecting multiple files

Steps to Uninstall fzf:

Step 1: Navigate to fzf directory using following command:

cd fzf

Step 2: Use ls command to list all the items in that directory.

ls

listing all files

Step 3: Run the uninstallation file i.e. uninstall, from this fzf directory to remove the fuzzy finder from your system.

./uninstall

Successfully uninstalled fzf

Article Tags :