Skip to content

Instantly share code, notes, and snippets.

@jackfranklin
Created June 16, 2012 19:32
Show Gist options
  • Save jackfranklin/2942321 to your computer and use it in GitHub Desktop.
Save jackfranklin/2942321 to your computer and use it in GitHub Desktop.
Bash to mkdir and then immediately CD
function mkdir
{
command mkdir $1 && cd $1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment