-
-
Save shaybix/be0b38cbacb4d50b8411276c9dcfd920 to your computer and use it in GitHub Desktop.
Bash or ZSH: Check if a binary or command exists
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
# which goes into dev null | |
# $? is the magic that tells us if it worked 0 = exists | |
if [[ `which nvm &>/dev/null && $?` != 0 ]]; then | |
source ~/.nvm/nvm.sh | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment