Hello everybody,
I published a bash utility named goto. The tool allows users to navigate to directories using an alias that was previously explicitly defined.
Its best feature is the autocomplete functionality making navigation pretty fast.
Example
A user may register a directory with:
Then, after typing this:
bash provides a list of all registered aliases allowing autocompletion based on user's input.
You can find the code and installation guides on GitHub: https://github.com/iridakos/goto
I published a bash utility named goto. The tool allows users to navigate to directories using an alias that was previously explicitly defined.
Its best feature is the autocomplete functionality making navigation pretty fast.
Example
A user may register a directory with:
Code:
goto --register workdir /mnt/development/a/really/long/directory
Then, after typing this:
Code:
goto <tab>
bash provides a list of all registered aliases allowing autocompletion based on user's input.
You can find the code and installation guides on GitHub: https://github.com/iridakos/goto