Skip to content

Instantly share code, notes, and snippets.

@briansorahan
Created October 1, 2013 15:08
Show Gist options
  • Save briansorahan/6779960 to your computer and use it in GitHub Desktop.
Save briansorahan/6779960 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 "$@"; }
@davecarter
Copy link

👌

@stajahlee
Copy link

Thank you!

@Justinzobel
Copy link

👍

@nuxeh
Copy link

nuxeh commented Apr 30, 2018

Amazing!

@dipspb
Copy link

dipspb commented Mar 6, 2020

👍

@thirumoorthir
Copy link

Amazing! @briansorahan

@OJOMB
Copy link

OJOMB commented Dec 4, 2022

dankeschon

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment