Forrest logo
back to context overview

fd

List of commands for fd:

  • fd:tldr:18a42 fd: Recursively find files matching a specific pattern in the current directory.
    $ fd "${select}"
    try on your machine
    explain this command
  • fd:tldr:524b6 fd: Find files in a specific directory.
    $ fd "${select}" ${path-to-directory}
    try on your machine
    explain this command
  • fd:tldr:6a049 fd: Execute a command on each search result returned.
    $ fd "${select}" --exec ${command}
    try on your machine
    explain this command
  • fd:tldr:6de10 fd: Include ignored and hidden files in the search.
    $ fd --hidden --no-ignore "${select}"
    try on your machine
    explain this command
  • fd:tldr:ae681 fd: Find files that begin with `foo`.
    $ fd "^foo"
    try on your machine
    explain this command
  • fd:tldr:ff241 fd: Find files with a specific extension.
    $ fd --extension txt
    try on your machine
    explain this command
back to context overview