Files
cheatsheet-tldr/tldr/zoxide
2025-05-13 00:20:06 +00:00

35 lines
872 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`
- Remove a directory from `zoxide`'s database:
`zoxide remove {{path/to/directory}}`
- Generate shell configuration for command aliases (`z`, `zi`):
`zoxide init {{bash|elvish|fish|nushell|posix|powershell|tcsh|xonsh|zsh}}`