Skip to content

Instantly share code, notes, and snippets.

@cristopher-rodrigues
Last active December 10, 2015 02:51
Show Gist options
  • Save cristopher-rodrigues/bcb03cbf75e17c321a27 to your computer and use it in GitHub Desktop.
Save cristopher-rodrigues/bcb03cbf75e17c321a27 to your computer and use it in GitHub Desktop.
detect os
if [[ "$OSTYPE" == "linux-gnu" ]]; then
printf "\e[97mlinux-gnu ☂\n";
elif [[ "$OSTYPE" == "darwin"* ]]; then
printf "\e[97mdarwin \n";
else
echo "☠ WTF? ☠;
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment