Skip to content

Instantly share code, notes, and snippets.

@Satal
Created January 21, 2024 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Satal/07db78bfc4d714f9c940af08593959ea to your computer and use it in GitHub Desktop.
Save Satal/07db78bfc4d714f9c940af08593959ea to your computer and use it in GitHub Desktop.
A function that will make a directory and then change directory into it
# This goes at the end of .bashrc
mkcd() {
mkdir -p "$1" && cd "$1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment