Skip to content

Instantly share code, notes, and snippets.

@zeuxisoo
Created November 19, 2011 14:26
Show Gist options
  • Save zeuxisoo/1378883 to your computer and use it in GitHub Desktop.
Save zeuxisoo/1378883 to your computer and use it in GitHub Desktop.
Bash profile method for fast switch to develop directory
www () {
local root
if [ $1 ]; then
path="/Users/[USER]/Desktop/htdocs/$1"
if [ -d "$path" ]; then
root=$path
else
root=$1
fi
else
root="/Users/[USER]/Desktop/htdocs"
fi
cd $root
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment