Installation

Linux

Update system with apt

sudo apt install autojump -y
sudo apt upgrade autojump -y
# Create a profile backup
sudo cp /etc/profile /etc/profile.bak
 
# Add function into bash config
{
	echo '';
	echo '. /usr/share/autojump/autojump.sh';
} | sudo tee --append /etc/profile > /dev/null

Windows

Usage

# Jump to directory
j <directory>
# Display current stats
j --stat

Appendix