#!/bin/sh

if [ -f /etc/os-release ]
then
    . /etc/os-release
    echo ${PRETTY_NAME}
    exit 0
fi
