Skip to content

Instantly share code, notes, and snippets.

@windsting
Forked from briansorahan/mkcd
Created August 3, 2017 05:10
Show Gist options
  • Save windsting/e9552e223fb1c8599803618507625c49 to your computer and use it in GitHub Desktop.
Save windsting/e9552e223fb1c8599803618507625c49 to your computer and use it in GitHub Desktop.
bash alias for a 'mkcd' command which creates a dir and cd's into it
mkcd() { mkdir -p "$@" && cd "$@"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment