fpick 0.2.0

Interactive file picker
fpick-0.2.0 is not a library.

fpick

fpick is an interactive file picker to traverse through directories tree in a terminal.

Installation

Cargo

cargo install fpick

This will install fpick binary in Rust's Path.

Binary

Alternatively, you can download the compiled binary:

curl -L https://github.com/igrek51/fpick/releases/download/0.2.0/fpick -o ~/bin/fpick
chmod +x ~/bin/fpick

Usage

Launch the interactive file picker by running fpick.

Navigate with keyboard:

  • Up & Down to move between files and directories,
  • Left to go up,
  • Right to enter a directory.
  • Type in the phrase of a filename to filter the list of files
  • Enter to select a file, exit and print its path to stdout.

You can use it in combination with other commands, for example to print the selected file:

cat `fpick`