You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simply add an the following alias into your .bash_profile / .bashrc / .bash_aliases
(the word PATH should be replaced by the full path of where this application has been placed, e.g. /home/user/where/where)
alias where=". PATH"
The reason for this alias is that the program cds a user into the directory as part of its functionality and if this script was simply run it would be run inside of a sub-shell and not effect the users current pwd. Therefore the script needs to be sourced to run and effect the users pwd.