DEV Community

Cover image for goto - navigate to aliased directories

goto - navigate to aliased directories

Lazarus Lazaridis on March 07, 2018

I created a bash utility named goto that allows users to navigate to aliased directories. It comes with a nice auto-completion script so that wh...
Collapse
 
ycmjason profile image
YCM Jason

Seems interesting.

Just wondering why not just setting an environment variable with .basrc?

Collapse
 
iridakos profile image
Lazarus Lazaridis

The purpose of the tool is to allow users register aliases for their desired directories (like project directories, workspaces etc) and then with the help of bash completion navigate to them very easily using their aliases. Environment variables wouldn't make this process that easy.

Collapse
 
ycmjason profile image
YCM Jason

This make sense! Quite cool quite cool.