Icon

fzf

fzf is a general-purpose command-line fuzzy finder. It is an interactive filter program for any kind of list such as files, command history, processes, hostnames, bookmarks, and git commits, enabling quick fuzzy searching.
Latest: 7
Last checked: Jun 9, 2026 12:10am
Rank: 727/15140
Monitored via:
GitHub Releases Site Monitor Winget Web Scrape
Follow to track new versions in your feed.
Report

Overview

0
License: MITInstaller: scriptSilent: YesWinget: Available
Silent install
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf && ~/.fzf/install

Version & Lifecycle

0
Current: 7 N-2: 0.72.0 Avg cadence: Every 18 days

Top Contributors

Top sitewide contributors:

  1. Anbarasan
  2. nico_k
  3. Bob
  4. Vigneshwaran

Community Notes

Command-line note • February 19, 2026
0

fzf – Command-line note

Deploy fzf on Windows enterprise machines using Winget for silent installation: winget install junegunn.fzf, which requires no user interaction and places the executable in %LOCALAPPDATA%MicrosoftWinGetPackagesjunegunn.fzf_Microsoft.Winget.Source_8wekyb3d8bbwefzf.exe for PATH access. For shell integration in PowerShell, install the PSFzf module via Install-Module PSFzf -Scope AllUsers -Force and import it in profiles with Import-Module PSFzf, enabling Ctrl+T fuzzy file finding and other bindings at scale. Customize behaviors enterprise-wide by setting environment variables like $env:FZF_DEFAULT_COMMAND = 'fd --type f' in profiles to respect .gitignore patterns during deployments.

Command-line note • December 27, 2025
0

fzf – Command-line note

For silent enterprise deployment of fzf on Windows, use winget install --id junegunn.fzf --silent --accept-package-agreements --accept-source-agreements to suppress UI prompts and automate installation at scale without user interaction. Post-install, enable shell integration in PowerShell profiles by adding Set-PSReadLineKeyHandler -Key UpArrow -ScriptBlock { [Microsoft.PowerShell.PSConsoleReadLine]::HistorySearchBackward() }; Set-PSReadLineKeyHandler -Key DownArrow -ScriptBlock { [Microsoft.PowerShell.PSConsoleReadLine]::HistorySearchForward() } or via the PSFzf module with Install-Module PSFzf -Scope AllUsers -Force for key bindings like Ctrl+T.

Release Notes & Updates

0
Avg cadence:
Updates • 0

Help us match vulnerabilities

No vulnerability match yet. Pick the right product:

Looking for matching products…
Don’t see it? Paste a CPE

Also known as

Other names people use for this app — helps search and matching.

fzfjunegunn fzf

Packaging Notes

0

Available via Git clone and install script; also available on package managers such as Chocolatey, Scoop, Winget, MSYS2, and Homebrew

Notes

0

Installation modifies shell configuration to add fzf to PATH and enable shell integration. Also popular as a Vim plugin.