Skip to content

Instantly share code, notes, and snippets.

@YourFriendCaspian
Created May 1, 2023 10:39
Show Gist options
  • Save YourFriendCaspian/67f4eb791a89fc66e5b3dee998d8f0ec to your computer and use it in GitHub Desktop.
Save YourFriendCaspian/67f4eb791a89fc66e5b3dee998d8f0ec to your computer and use it in GitHub Desktop.
#!/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