#!/bin/bash
RELEASE_FILE=/etc/os-release
if test -f "$RELEASE_FILE"; then
ID=$(grep -E "^ID=" /etc/os-release | cut -d = -f 2 | tr -d '"' | tr '\n' ' ')
VERSION_ID=$(grep -E "^VERSION_ID=" /etc/os-release | cut -d = -f 2 | tr -d '"' | tr '\n' ' ')
echo "${ID}${VERSION_ID}"
else
echo "UnknownLinuxDist"
fi