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

https://github.com/davidmyersdev/j

Quickly navigate your filesystem with the power of fzf (inspired by autojump)
https://github.com/davidmyersdev/j

cli fzf zsh

Last synced: about 1 month ago
JSON representation

Quickly navigate your filesystem with the power of fzf (inspired by autojump)

Awesome Lists containing this project

README

          

# j

Quickly navigate your filesystem with the power of fzf (inspired by autojump)

![](j.svg)

## Usage

```sh
Usage: j [-h] [--help]

Quickly navigate your filesystem with the power of fzf.

Options

-h, --help View options and examples

Examples

j -h
j somedir
j ../relative/path/to/dir
```

`j` does not index your filesystem. Instead, it automatically tracks and ranks the directories you visit in a local database (a text file at `~/.j/db`).

## Installation

To get started, clone this repository.

```sh
git clone https://github.com/voracious/j && cd j
```

Next, source `j.sh` in your `~/.zshrc`.

```sh
echo "source $(pwd)/j.sh" >> ~/.zshrc
```