ZIP
WinGet
fzf
Junegunn Choi · 0.60.0 · arm64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Distributed as a ZIP archive — extract the contents and run the executable directly. No installer is included.
File Identity
Filename
fzf-0.60.0-windows_arm64.zip
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
junegunn.fzf
Version
0.60.0
Description
A general-purpose command-line fuzzy finder
License
MIT
↗
Homepage
https://github.com/junegunn/fzf
Installer URL
https://github.com/junegunn/fzf/releases/download/v0.60.0/fzf-0.60.0-windows_arm64.zip
Release Notes
Release highlights: https://junegunn.github.io/fzf/releases/0.60.0/
- Added --accept-nth for choosing output fields
ps -ef | fzf --multi --header-lines 1 | awk '{print $2}'
# Becomes
ps -ef | fzf --multi --header-lines 1 --accept-nth 2
git branch | fzf | cut -c3-
# Can be rewritten as
git branch | fzf --accept-nth -1
- --accept-nth and --with-nth now support a template that includes multiple field index expressions in curly braces
echo foo,bar,baz | fzf --delimiter , --accept-nth '…