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)
- Host: GitHub
- URL: https://github.com/davidmyersdev/j
- Owner: davidmyersdev
- License: mit
- Created: 2022-02-04T22:08:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-12T15:43:28.000Z (almost 4 years ago)
- Last Synced: 2025-10-23T00:36:14.718Z (7 months ago)
- Topics: cli, fzf, zsh
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# j
Quickly navigate your filesystem with the power of fzf (inspired by autojump)

## 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
```