Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Use Autojump to Help Quick Navigation in Terminal in Linux

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.

sudo apt 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