Forrest logo
back to context overview

fzf

List of commands for fzf:

  • fzf:tldr:05f4a fzf: Start fzf with a specified query.
    $ fzf --query "${query}"
    try on your machine
    explain this command
  • fzf:tldr:46b60 fzf: Select multiple files with `Shift + Tab` and write to a file.
    $ find ${path-to-directory} -type f | fzf --multi > ${filename}
    try on your machine
    explain this command
  • fzf:tldr:b0e6e fzf: Start fzf on entries that not match pyc and match exactly travis.
    $ fzf --query "!pyc 'travis"
    try on your machine
    explain this command
  • fzf:tldr:baa1d fzf: Start fzf for running processes.
    $ ps aux | fzf
    try on your machine
    explain this command
  • fzf:tldr:fc1f8 fzf: Start fzf on all files in the specified directory.
    $ find ${path-to-directory} -type f | fzf
    try on your machine
    explain this command
  • fzf:tldr:ff4b8 fzf: Start fzf on entries that start with core and end with either go, rb, or py.
    $ fzf --query "^core go$ | rb$ | py$"
    try on your machine
    explain this command
back to context overview