Facebook PathPicker is a simple command line tool that solves the perpetual problem of selecting files out of bash output. PathPicker will:
Based on the "Productivity Tools" category.
Alternatively, view PathPicker alternatives based on common mentions on social networks and blogs.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of PathPicker or a related project?
Facebook PathPicker is a simple command line tool that solves the perpetual problem of selecting files out of bash output. PathPicker will:
$EDITORIt is easiest to understand by watching a simple demo:
After installing PathPicker, using it is as easy as piping into fpp. It takes
a wide variety of input -- try it with all the options below:
git status | fpphg status | fppgit grep "FooBar" | fppgrep -r "FooBar" . | fppgit diff HEAD~1 --stat | fppfind . -iname "*.js" | fpparc inlines | fppand anything else you can dream up!
PathPicker requires Python 3.
$SHELL to your current shell.Installing PathPicker is easiest with Homebrew for mac:
brew update (to pull down the recipe since it is new)brew install fppOn Debian-based systems, run these steps: fakeroot:
$ git clone https://github.com/facebook/PathPicker.git
$ cd PathPicker/debian
$ ./package.sh
$ ls ../pathpicker_*_all.deb
On Arch Linux, PathPicker can be installed from Arch User Repository (AUR). (The AUR fpp-git package.)
If you are on another system, or prefer manual installation, please follow the instructions given below.
If you are on a system without Homebrew, it's still quite easy to install PathPicker, since it's essentially just a bash script that calls some Python. These steps more-or-less outline the process:
cd /usr/local/ # or wherever you install appsgit clone https://github.com/facebook/PathPicker.gitcd PathPicker/Here we create a symbolic link from the bash script in the repo
to /usr/local/bin/ which is assumed to be in the current
$PATH:
ln -s "$(pwd)/fpp" /usr/local/bin/fppfpp --help # should work!For tmux users, you can additionally install tmux-fpp which adds a key combination to run PathPicker on the last received stdout.
This makes jumping into file selection mode even easier. (Check it out here!)
As mentioned above, PathPicker allows you to also execute arbitrary commands using the specified files.
Here is an example showing a git checkout command executed against the selected files:
The selected files are appended to the command prefix to form the final command. If you need the files
in the middle of your command, you can use the $F token instead, like:
cat $F | wc -l
Another important note is that PathPicker, by default, only selects files that exist on the filesystem. If you
want to skip this (perhaps to selected deleted files in git status), just run PathPicker with the --no-file-checks (or -nfc, for short) flag.
PathPicker is a combination of a bash script and some small Python modules. It essentially has three steps:
stdout from another program. Rather
than make specialized parsers for each program, we treat everything as noisy input, and select candidates via
regexes. To limit the number of calls to the filesystem (to check existence), we are fairly restrictive on the
candidates we extract.The downside to this is that files that are single words, with no extension (like test), that are not prepended by
a directory will fail to match. This is a known limitation to PathPicker, and means that it will sometimes fail to find valid files in the input.
Next, a selector UI built with curses is presented to the user. At this point you can select a few files to edit, or input a command
to execute.
Lastly, the python script outputs a command to a bash file that is later executed by the original bash script.
It's not the most elegant architecture in the world but, in our opinion, it provides a lot of utility.
For all documentation and configuration options, see the output of fpp --help.
See the CONTRIBUTING.md file for how to help out.
PathPicker is MIT licensed.
*Note that all licence references and agreements mentioned in the PathPicker README section above
are relevant to that project's source code only.
Do not miss the trending, packages, news and articles with our weekly report.