Skip to content

Instantly share code, notes, and snippets.

@IsmiKin
Created June 22, 2019 11:32
Show Gist options
  • Save IsmiKin/3fd5e4443a4c693e81b0744b9aadd22e to your computer and use it in GitHub Desktop.
Save IsmiKin/3fd5e4443a4c693e81b0744b9aadd22e to your computer and use it in GitHub Desktop.
Checker machine OS
unameOut="$(uname -s)"
case "${unameOut}" in
Linux*) machine=Linux;;
Darwin*) machine=Mac;;
CYGWIN*) machine=Cygwin;;
MINGW*) machine=MinGw;;
*) machine="UNKNOWN:${unameOut}"
esac
echo ${machine}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment