Skip to content

Instantly share code, notes, and snippets.

@unakatsuo
Created February 25, 2020 06:55
Show Gist options
  • Save unakatsuo/3cbb854a8c620bf91d78775b1de69c0a to your computer and use it in GitHub Desktop.
Save unakatsuo/3cbb854a8c620bf91d78775b1de69c0a to your computer and use it in GitHub Desktop.
Switch by /etc/os-release
#!/bin/sh
set -e
. /etc/os-release
case "${ID} ${ID_LIKE}" in
*ubuntu*) ;;
*debian*) ;;
*)
echo "Unsupproted distribution ${ID}" >&2
exit 1
;;
esac
#!/bin/sh
set -e
. /etc/os-release
case "${ID} ${ID_LIKE}" in
*centos*) ;;
*rhel*) ;;
*fedora*) ;;
*)
echo "Unsupproted distribution ${ID}" >&2
exit 1
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment