GitHub
github.com › rupa › z
GitHub - rupa/z: z - jump around · GitHub
OPTIONS -c restrict matches to subdirectories of the current directory -e echo the best match, don't cd -h show a brief help message -l list only -r match by rank only -t match by recent access only -x remove the current directory from the datafile EXAMPLES z foo cd to most frecent dir matching foo z foo bar cd to most frecent dir matching foo, then bar z -r foo cd to highest ranked dir matching foo z -t foo cd to most recently accessed dir matching foo z -l foo list all dirs matching foo (by frecency) NOTES Installation: Put something like this in your $HOME/.bashrc or $HOME/.zshrc: . /path/to/z.sh cd around for a while to build up the db. PROFIT!! Optionally: Set $_Z_CMD to change the command name (default z).
Starred by 17K users
Forked by 1.2K users
Languages Shell 64.6% | Roff 35.0% | Makefile 0.4%
GitHub
github.com › agkozak › zsh-z
GitHub - agkozak/zsh-z: Jump quickly to directories that you have visited "frecently." A native Zsh port of z.sh with added features. · GitHub
Jump quickly to directories that you have visited "frecently." A native Zsh port of z.sh with added features. - agkozak/zsh-z
Starred by 2.4K users
Forked by 79 users
Languages Shell
Videos
03:33
Demonstration of z, a unix program - YouTube
Modern Linux CLI Tools #8: ZOXIDE, the new/smarter CD
02:58
Get Faster on the Linux Terminal with zoxide! - YouTube
32:13
Linux Commands in 30 Mins (Real-World Example) - YouTube
25:02
20% of Linux Commands You'll Use 80% of the Time (Real-World Example) ...
59:25
Linux Command Line for Beginners - YouTube
GitHub
github.com › ajeetdsouza › zoxide
GitHub - ajeetdsouza/zoxide: A smarter cd command. Supports all major shells. · GitHub
A smarter cd command. Supports all major shells. Contribute to ajeetdsouza/zoxide development by creating an account on GitHub.
Starred by 37.9K users
Forked by 842 users
Languages Rust 82.8% | Shell 14.3% | Just 1.5% | Nix 1.4%
GitHub
github.com › rupa › z › blob › master › z.sh
z/z.sh at master · rupa/z
# set $_Z_CMD in .bashrc/.zshrc to change the command (default z). # set $_Z_DATA in .bashrc/.zshrc to change the datafile (default ~/.z). # set $_Z_MAX_SCORE lower to age entries out faster (default 9000). # set $_Z_NO_RESOLVE_SYMLINKS to prevent symlink resolution.
Author rupa
GitHub
github.com › skywind3000 › z.lua
GitHub - skywind3000/z.lua: :zap: A new cd command that helps you navigate faster by learning your habits. · GitHub
Starred by 3.1K users
Forked by 145 users
Languages Lua 90.9% | Python 4.1% | Shell 2.8% | Batchfile 2.2%
GitHub
github.com › zsh-users › zsh
GitHub - zsh-users/zsh: Mirror of the Z shell source code repository. · GitHub
The "--" is taken to be an end-of-options guard (same as "ls --"). The sh-compatible function definition syntax, "f() { ... }", is unchanged. The time-out (-t) value given to zsh/system's `zsystem flock` command is now limited to 2^30-1 seconds (= a little over 34 years).
Starred by 4.2K users
Forked by 514 users
Languages C 88.8% | Shell 6.6% | M4 2.9% | Perl 0.7% | Makefile 0.5% | Awk 0.3%
GitHub
github.com › agkozak › zsh-z › blob › master › zsh-z.plugin.zsh
zsh-z/zsh-z.plugin.zsh at master · agkozak/zsh-z
# Zsh-z - jump around with Zsh - A native Zsh version of z without awk, sort,
Author agkozak
GitHub
github.com › rupa › z › wiki
Home · rupa/z Wiki · GitHub
Short answer: instead of running the script as z.sh you type source z.sh or . z.sh in a shell, or to make it available all the time, put a command in your .bashrc that sources it, or just paste the contents of z.sh directly into your .bashrc.
Author rupa
GitHub
github.com › z-shell › zi › blob › main › zi.zsh
zi/zi.zsh at main · z-shell/zi
[[ $id_as == _local/* && -d $local_dir && ! -d $local_dir/._zi ]] && command mkdir -p "$local_dir"/._zi
Author z-shell
GitHub
github.com › JavaHammes › Z
GitHub - JavaHammes/Z: Z Anti-Anti-Debugger for Linux · GitHub
Z Anti-Anti-Debugger for Linux. Contribute to JavaHammes/Z development by creating an account on GitHub.
Starred by 60 users
Forked by 5 users
Languages C 96.6% | CMake 3.0% | Dockerfile 0.4%
Medium
medium.com › @sybrenbolandit › z-command-a2940c206278
Z COMMAND. Working from the command line can be… | by Sybren Boland | Medium
July 27, 2021 - Z to the rescue! Now you can jump to this directory with only the name of target directory. This post states one more tool you can use to power up your command line. Previously I posted fish shell as a first superpower. This time we see how to jump around in your directories. Installing on a mac can be done first installing fisher (github):
GitHub
github.com › z-shell › zi
GitHub - z-shell/zi: ✨ A Swiss Army Knife for Zsh - Unix Shell
✨ A Swiss Army Knife for Zsh - Unix Shell. Contribute to z-shell/zi development by creating an account on GitHub.
Starred by 903 users
Forked by 47 users
Languages Shell 99.9% | JavaScript 0.1%
Top answer 1 of 4
24
In the z readme, after line 50, it says:
Installation:
Put something like this in your $HOME/.bashrc or $HOME/.zshrc:
. /path/to/z.shcd around for a while to build up the db.
You need to download the z.sh file to a directory of your choosing, then tell your .bashrc where it is, so your terminal can find it. (The same applies for z-shell, which is just another shell system.) Then, after you use bash for a while, z will know your favorite locations.
2 of 4
18
You can download and add to *rc files using command line as so
# Download to latest to home dir
wget "https://raw.githubusercontent.com/rupa/z/master/z.sh" -O "~/z.sh"
# Add to .bashrc
echo "source /path/to/z.sh" >> ~/.bashrc
# Add to .zshrc
echo "source /path/to/z.sh" >> ~/.zshrc
GitHub
github.com › jethrokuan › z
GitHub - jethrokuan/z: Pure-fish z directory jumping · GitHub
Starred by 1.5K users
Forked by 49 users
Languages Shell
GitHub
gist.github.com › derhuerst › 12a1558a4b408b3b2b6e
Installing the Z Shell (zsh) on Linux, Mac OS X and Windows · GitHub
Try sudo sh -c 'echo /usr/local/bin/zsh >> /etc/shells' Thanks @agueroveraalvaro Your command worked for me and the /etc/shells file shows the new entry for /usr/local/bin/zsh Also i executed chsh -s /usr/local/bin/zsh command But echo $SHELL still shows me /bin/zsh instead of /usr/local/bin/zsh Can you please help?
oorkan
oorkan.dev › blog › linux › make-your-life-easier-with-z-script
Make Your Life Easier With Z Script | oorkan
September 26, 2020 - One option can be using the history command in Linux: ... This is not an ideal solution because if the list is very long and we don’t remember the exact name of the directory we used before, then there we have problems. On the other hand, copy-pasting directory names from a list generated by the history command can be time-consuming. ... First, we need to download it from a GitHub repository here: github.com/rupa/z...
Super User
superuser.com › questions › 1865327 › is-there-an-equivalent-of-the-z-module-in-linux-terminal-to-navigate-easily
Is there an equivalent of the "Z" module in Linux terminal to navigate easily? - Super User
Yea it's called zsh-z - "Zsh-z is a command-line tool that allows you to jump quickly to directories that you have visited frequently or recently" see https://github.com/agkozak/zsh-z · Share · Improve this answer · Follow · answered Feb ...