Parse colon- or tab-delimited input cleanly.
Section: Core usage
Set a custom field delimiter
bash
bash
cut -d: -f1,3 /etc/passwd | fzf --delimiter=':' --with-nth=1Explanation
Pair this with --nth or --with-nth for structured line formats.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing Core usage
Select files from a pipeline
Pipe any list into fzf and interactively pick a line.
Open the selected file in an editor
Capture the selected value and open it with $EDITOR.
Use exact matching
Turn off fuzzy matching and only match the query literally.
Transform what is displayed
Hide or reorder fields in the list without changing the selected line.