LinuxCommandLibrary

zoxide

Keep track of the most frequently used directories.

TLDR

Go to the highest-ranked directory that contains "foo" in the name

$ zoxide query [foo]
copy


Go to the highest-ranked directory that contains "foo" and then "bar"
$ zoxide query [foo] [bar]
copy


Start an interactive directory search (requires fzf)
$ zoxide query --interactive
copy


Add a directory or increment its rank
$ zoxide add [path/to/directory]
copy


Remove a directory from zoxide's database interactively
$ zoxide remove [path/to/directory] --interactive
copy


Generate shell configuration for command aliases (z, za, zi, zq, zr)
$ zoxide init [bash|fish|zsh]
copy

DESCRIPTION

zoxide v0.4.3-unknown A faster way to navigate your filesystem

USAGE:

zoxide <SUBCOMMAND>

FLAGS:

-h, --help

Prints help information

-V, --version

Prints version information

SUBCOMMANDS:

add

Add a new directory or increment its rank

help

Prints this message or the help of the given subcommand(s)

import

Import from z database

init

Generates shell configuration

query

Search for a directory

remove

Remove a directory

Copied to clipboard