Created
February 8, 2016 13:12
-
-
Save shahdhiren/2fa68884823b0485d6d4 to your computer and use it in GitHub Desktop.
Change the Shell in Mac OS X Terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Change the user login default shell to zsh: | |
chsh -s /bin/zsh | |
ksh: | |
chsh -s /bin/ksh | |
tcsh: | |
chsh -s /bin/tcsh | |
bash (default): | |
chsh -s /bin/bash | |
sh: | |
chsh -s /bin/sh | |
other shells: | |
Simply adjust the path for chsh to set, like so: | |
chsh -s /path/to/alternate/shell/like/fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment