Skip to content

Instantly share code, notes, and snippets.

@devenes
Created August 29, 2022 18:31
Show Gist options
  • Save devenes/ec4e0b25fd58b9c3f324ad2c02e616db to your computer and use it in GitHub Desktop.
Save devenes/ec4e0b25fd58b9c3f324ad2c02e616db to your computer and use it in GitHub Desktop.
if [ $(cat /etc/os-release | awk -F '=' '/^ID=/ {print $2}' | cut -d '"' -f 2) = "amzn" ]; then
echo "Amazon Linux"
elif [ $(cat /etc/os-release | awk -F '=' '/^ID=/ {print $2}' | cut -d '"' -f 2) = "ubuntu" ]; then
echo "Ubuntu"
else
echo "Unsupported OS"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment