I need to have access to several ssh servers, and several paths throughout my working day. I'm a very unsophisticated command line user, so for others out there who would like to tame the command line, here's a trick:
vi ~/.bash_profile
alias go-whatever='cd /path/to/whatever'
alias go-client='ssh me@client.com'
#etc.
source ~/.bash_profile
alias