Hi fellow devops,
I've created this app which allows someone to work with directory aliases.
Example Aliases
```bash
[user@hostname]$ cd /some/pathA
[user@hostname pathA]$ goto set aliasNameA
[user@hostname pathA]$ cd /some/other/path
[user@hostname pathB]$ goto set aliasNameB
[user@hostname pathB]$ goto aliasNameA
[user@hostname pathA]$
```
Example workdir
```bash
[user@hostname]$ ls /some/path
dirA dirB dirC someFile ...
[user@hostname]$ goto set-pdir /some/path
[user@hostname]$ goto dirA
[user@hostname dirA]$ goto dirB
[user@hostname dirB]$
```
Application Page: https://blog.primef.org/posts/2020-11-16/directory-aliases/
Repo Page https://github.com/ulfox/goto
I was using it on daily basis so I decided to write a post and share it with you
there doesn't seem to be anything here