Skip to content

Instantly share code, notes, and snippets.

@cxy1997
Created May 27, 2020 02:53
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 cxy1997/041b30e8e2f9f7c228f146232c0473fc to your computer and use it in GitHub Desktop.
Save cxy1997/041b30e8e2f9f7c228f146232c0473fc to your computer and use it in GitHub Desktop.
Change Default Shell Locally
if [ "$SHELL" != "/usr/bin/zsh" ]
then
export SHELL="/usr/bin/zsh"
exec /usr/bin/zsh -l # -l: login shell again
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment