Last active
December 25, 2021 23:07
-
-
Save andrewcrook/3d3bb280df9c2fcbecd8281df58d143c to your computer and use it in GitHub Desktop.
/scripts/functions/
This file contains 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
# add to .zshrc or .bashrc | |
# Create a new directory and enter it | |
function mkd() { | |
mkdir -p "$@" && cd "$_"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment