Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Created July 27, 2019 15:10
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 mattmc3/59094afc5aac08ac3e6f16d4c93e99af to your computer and use it in GitHub Desktop.
Save mattmc3/59094afc5aac08ac3e6f16d4c93e99af to your computer and use it in GitHub Desktop.
Shell: test for bash or zsh
if [ -n "$ZSH_VERSION" ]; then
# assume Zsh
elif [ -n "$BASH_VERSION" ]; then
# assume Bash
else
# asume something else
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment