Skip to content

Instantly share code, notes, and snippets.

@arobb
Created December 4, 2018 19:33
Show Gist options
  • Save arobb/a8354082f5407f4fba0e20b292e84c36 to your computer and use it in GitHub Desktop.
Save arobb/a8354082f5407f4fba0e20b292e84c36 to your computer and use it in GitHub Desktop.
#
# Determine which OS we are in
#
platform='unknown'
unamestr=$(uname)
case $unamestr in
Darwin)
platform='mac'
;;
*)
platform='linux'
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment