Use Autojump to Help Quick Navigation in Terminal in Linux

Posted on Oct 29, 2018 in OS

Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.

** Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives. **

I personally is not a big fun of autojump and similar tools. I think it makes things more complicated.

Installation

Use the following command to install autojump on Ubuntu.

wajig install autojump

Place the following code in your .bashrc file and you are good to go.

if [[ -f /usr/share/autojump/autojump.bash ]]; then
    . /usr/share/autojump/autojump.bash
fi

References