Skip to content

Instantly share code, notes, and snippets.

@indirect
Created June 14, 2012 20:36
Show Gist options
  • Save indirect/2932788 to your computer and use it in GitHub Desktop.
Save indirect/2932788 to your computer and use it in GitHub Desktop.
Make and cd into a directory
# make and cd to a directory
function mcd {
mkdir -p "$@"
cd "$@"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment