Skip to content

Instantly share code, notes, and snippets.

@ChunMinChang
Created January 13, 2016 04:12
Show Gist options
  • Save ChunMinChang/dddaa299e339c57a6d73 to your computer and use it in GitHub Desktop.
Save ChunMinChang/dddaa299e339c57a6d73 to your computer and use it in GitHub Desktop.
Detect your OS
case "$OSTYPE" in
solaris*) echo "SOLARIS" ;;
darwin*) echo "OSX" ;;
linux*) echo "LINUX" ;;
bsd*) echo "BSD" ;;
cygwin) echo "cygwin" ;;
*) echo "unknown: $OSTYPE" ;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment