Skip to content

Instantly share code, notes, and snippets.

@Kif11
Created June 14, 2017 22:31
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 Kif11/cb5c76551476d465d5bcb361f0c9d157 to your computer and use it in GitHub Desktop.
Save Kif11/cb5c76551476d465d5bcb361f0c9d157 to your computer and use it in GitHub Desktop.
Find current OS in bash
if [[ `uname` == "Linux" ]]; then
# Linux
elif [[ `uname` == "Darwin" ]]; then
# OSX
elif [[ `uname` = CYGWIN_NT* ]]; then
# Cygwin
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment