Skip to content

Instantly share code, notes, and snippets.

@mgeoffray
Created January 15, 2017 18:25
Embed
What would you like to do?
Bash - Create directory(ies) and cd into it / them
function mkcd() {
mkdir -p $1 && cd "$_"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment