Skip to content

Instantly share code, notes, and snippets.

@dwerbam
Last active January 9, 2024 19:47
Show Gist options
  • Save dwerbam/22147df3ccb55667db2394b2509a95d5 to your computer and use it in GitHub Desktop.
Save dwerbam/22147df3ccb55667db2394b2509a95d5 to your computer and use it in GitHub Desktop.
mcd alias, to create a directory and cd into it immediately
alias mcd='function _mcd(){ mkdir -p "$1"; cd "$1"; };_mcd'
@dwerbam
Copy link
Author

dwerbam commented Feb 5, 2017

example of usage:
$ mcd creates/entire/trees

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