CD Faster on Linux

Ole Ersoy
Dec 20, 2020
Image by Christine Sponchia from Pixabay

Scenario

We have been typing:

cd ~/path/to/some/down/deep/example/yougetit/directory/

And we just want to type cdex

Approach

In ~/.bashrc add:

alias cdex='cd ~/path/to/some/down/deep/example/yougetit/directory/'

Then reload ~/.bashrc

source ~/.bashrc

--

--