Last active
January 9, 2024 19:47
-
-
Save dwerbam/22147df3ccb55667db2394b2509a95d5 to your computer and use it in GitHub Desktop.
mcd alias, to create a directory and cd into it immediately
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias mcd='function _mcd(){ mkdir -p "$1"; cd "$1"; };_mcd' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
example of usage:
$ mcd creates/entire/trees