Skip to content

Instantly share code, notes, and snippets.

@alchen99
Created October 28, 2021 21:45
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 alchen99/db5e2dfacfba5ace7444a1b1f400b5e1 to your computer and use it in GitHub Desktop.
Save alchen99/db5e2dfacfba5ace7444a1b1f400b5e1 to your computer and use it in GitHub Desktop.
if [[ -f $HOME/.bashrc ]]; then source $HOME/.bashrc; fi
if [[ -f $HOME/.profile ]]; then source $HOME/.profile; fi
test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash"
test -e "${HOME}/lib/azure-cli/az.completion" && source "${HOME}/lib/azure-cli/az.completion"
export PATH=$PATH:$HOME/bin
# The next line updates PATH for the Google Cloud SDK.
if [ -f "${HOME}/google-cloud-sdk/path.bash.inc" ]; then . "${HOME}/google-cloud-sdk/path.bash.inc"; fi
# The next line enables shell command completion for gcloud.
if [ -f "/${HOME}google-cloud-sdk/completion.bash.inc" ]; then . "${HOME}/google-cloud-sdk/completion.bash.inc"; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment