Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/firstandthird/fa

CLI app to quickly change directories or search files
https://github.com/firstandthird/fa

Last synced: 14 days ago
JSON representation

CLI app to quickly change directories or search files

Awesome Lists containing this project

README

        

#fa (Find Anything)

##Usage

```shell
Usage: fa [options]

Options:

-f, --file search for files
-d, --dir change directory (default)
-i, --interactive interactively choose a result
-e, --exec pass in result into app (ex: vim)
-r, --root set root folder to search from
--depth number of directories to search in (default: $DEPTH)
-v, --verbose verbose output
-V, --version output program version
--update update fa to latest version
-h, --help output help information

```

##Install

`make install`

Single line install:

```
(mkdir /tmp/fa && cd /tmp/fa && curl -L# https://github.com/firstandthird/fa/archive/master.tar.gz | tar zx --strip 1 && make install)
```

After installation, add this to your .bash_profile or .bashrc:

```
eval "$(fa --init)"
```