1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-10 00:25:24 +02:00
tldr/pages/common/zoxide.md

30 lines
779 B
Markdown
Raw Normal View History

2020-03-24 01:32:23 +00:00
# zoxide
> Keep track of the most frequently used directories.
> Uses a ranking algorithm to navigate to the best match.
> More information: <https://github.com/ajeetdsouza/zoxide>.
- Go to the highest-ranked directory that contains "foo" in the name:
`zoxide query {{foo}}`
- Go to the highest-ranked directory that contains "foo" and then "bar":
`zoxide query {{foo}} {{bar}}`
- Start an interactive directory search (requires `fzf`):
`zoxide query --interactive`
- Add a directory or increment its rank:
`zoxide add {{path/to/directory}}`
2020-03-24 01:32:23 +00:00
- Remove a directory from `zoxide`'s database:
2020-03-24 01:32:23 +00:00
`zoxide remove {{path/to/directory}}`
2020-03-24 01:32:23 +00:00
2025-05-11 22:36:29 -07:00
- Generate shell configuration for command aliases (`z`, `zi`):
2020-03-24 01:32:23 +00:00
2025-05-11 22:36:29 -07:00
`zoxide init {{bash|elvish|fish|nushell|posix|powershell|tcsh|xonsh|zsh}}`