Is there a way to get into an alias directory from shell with the command \"cd\" ? It always returns that \"htdocs\" isn\'t a directory.
Edit: I made the shortcut with t
I am not sure how OSX exposes Alias links but since you are using bash you can just create a variable in your .bashrc file.
.bashrc
On its own line put:
htdocs=YourDirectoryPath/
Once you have restarted bash you can just type cd $htdocs
cd $htdocs