Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save awarrenlove/b326edde1acf56a2cb0ddcba8a12c019 to your computer and use it in GitHub Desktop.
Save awarrenlove/b326edde1acf56a2cb0ddcba8a12c019 to your computer and use it in GitHub Desktop.
Bash Function to Create Directory and Switch Immediately
echo 'function mkcd() { mkdir -p $1; cd $1; }' >> ~/.profile && source ~/.profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment