Skip to content

Instantly share code, notes, and snippets.

@organicaudio
Last active November 13, 2021 09:44
Show Gist options
  • Save organicaudio/5a1650796eb0dafcd5cad3058ab652c0 to your computer and use it in GitHub Desktop.
Save organicaudio/5a1650796eb0dafcd5cad3058ab652c0 to your computer and use it in GitHub Desktop.
If you invoke the bash shell while macOS Catalina is configured to use a different shell, you'll see a message that the default interactive shell is now zsh. To silence this warning add to /etc/profile for system-wide effect:
# System-wide .profile for sh(1)
export BASH_SILENCE_DEPRECATION_WARNING=1
if [ -x /usr/libexec/path_helper ]; then
eval `/usr/libexec/path_helper -s`
fi
if [ "${BASH-no}" != "no" ]; then
[ -r /etc/bashrc ] && . /etc/bashrc
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment