Skip to content

Instantly share code, notes, and snippets.

@jabbalaci
Created January 25, 2023 09:29
Show Gist options
  • Save jabbalaci/9646c22aa022667fd83e55f527cf58ae to your computer and use it in GitHub Desktop.
Save jabbalaci/9646c22aa022667fd83e55f527cf58ae to your computer and use it in GitHub Desktop.
mdgo: mkdir folder; cd folder
# 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