fzf
General-purpose command-line fuzzy finder (https://github.com/junegunn/fzf)
To fuzzy find files in current directory
To fuzzy find a file and cat it
Select multiple files (TAB to select, Shift+TAB to un-select) to delete
Run a preview command with fzf, specifiy a command inside the double quotes
Find files from find command and preview it with fzf
find . -type f -name "*.txt" | fzf --preview "head {}"
Display border around fzf output
Output only selected files and pipe it to a file
find . -type f "*.txt" | fzf --multi > output.txt
Search history once bash completions are enabled
Fast directory navigation
Quick file search and selection
Quickly unset an environment variable
Systemd show you the status of any service