Created
January 25, 2023 09:29
-
-
Save jabbalaci/9646c22aa022667fd83e55f527cf58ae to your computer and use it in GitHub Desktop.
mdgo: mkdir folder; cd folder
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
# these work in both Bash and ZSH | |
alias md="mkdir" | |
alias ..="cd .." | |
alias ...="cd ../.." | |
mdgo () { | |
if [[ -z "$1" ]] | |
then | |
echo "Usage: mdgo <dir>" | |
else | |
mkdir $1 | |
cd $1 | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment