Using shell alias to make navigation in the file system easier. It can be helpful when working in multiple projects in a workspace, since it's faster to type an alias that navigates into a folder instead to type the fullpath
Install via npm:
npm install -g prjk
To create an alias in your .bash_profile:
. prjk alias myfolder ~/test-folder # the dot is necessary
It will create an alias in your ~/.bash_profile (or ~/.bashrc)
To run your recently created alias:
myfolder # to go to the respective projects' folder
myfolder . # to list all folders (limited in 20 results)
myfolder [abc] # to list folders that have a, b or c in name
myfolder abc # to list folders that have 'abc' in name