Skip to content

Instantly share code, notes, and snippets.

@mgeoffray
Created January 15, 2017 18:25
Show Gist options
  • Save mgeoffray/99bc7b60d2db8cd5abeccc1a82dfa5c0 to your computer and use it in GitHub Desktop.
Save mgeoffray/99bc7b60d2db8cd5abeccc1a82dfa5c0 to your computer and use it in GitHub Desktop.
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