Created
May 1, 2023 10:39
-
-
Save YourFriendCaspian/67f4eb791a89fc66e5b3dee998d8f0ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Common utilities | |
case "${OSTYPE}" in | |
solaris*) OSNAME="SOLARIS" ;; | |
darwin*) OSNAME="MACOSX" ;; | |
linux*) OSNAME="LINUX" ;; | |
bsd*) OSNAME="BSD" ;; | |
msys*) OSNAME="WINDOWS" ;; | |
*) OSNAME="${OSTYPE}" ;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment