Tip: use Z
By Juan Manuel Allo Ron on May 28, 2020

Aren’t you tired of always typing the same routes in the terminal? When I found z
it changed my productivity.
What’s z?
A terminal command to help you quickly navigate across directories. It will learn from common directories you browse and offer a shortcut for them:
Installing
brew install z
If you don’t use brew
you just need to download it from the repository and add z.sh in your path.
# Download to latest to home dir
wget https://raw.githubusercontent.com/rupa/z/master/z.sh -O ~/z.sh
# Add to .bashrc
echo . /path/to/z.sh >> ~/.bashrc #or ~/.zshrc
Trust me it’s totally worth it!
Enjoy!!
Catch up with me on X (twitter):@juan_allo
Share
---
Similar Articles

Tip: Syntax Highlighting with BAT
May 7, 2020
Terminal command cat is a standard tool to print file contents to the console. I use it all the time but recently I found bat and it changed my life!

Debugging IE11 with VirtualBox
May 12, 2020
A quick setup with virtualbox to test IE11

CSS Flexbox guide
Apr 6, 2017
Flexbox helps to solve some of the major problems when working with CSS. Here is a cheatsheet that provides a glance of everything you can do with it.

Tip: list NPM scripts
May 14, 2020
In this quick-tip I will show you how to list scripts from the terminal