DEV Community

Prathamesh Desai
Prathamesh Desai

Posted on

Autojump

autojump is a command line utility similar to cd. It helps speeds up file navigation by maintaining a history of directories that have been previously navigated by the user. If there are directories with the same name, autojump maintains a weighted history to favor the most frequently accessed directory.

complete guide

cheat sheet:

  • check weight
j -s
Enter fullscreen mode Exit fullscreen mode
  • autojump help
j --help
Enter fullscreen mode Exit fullscreen mode
  • jump to a directory
j foo
Enter fullscreen mode Exit fullscreen mode
  • jump to a child directory
jc bar
Enter fullscreen mode Exit fullscreen mode

-The o command opens the file manager

jo foo
Enter fullscreen mode Exit fullscreen mode

Top comments (1)

Collapse
 
frozn profile image
Sahil

Thanks for posting this, I never knew about this