regex – 如何使用shell脚本查找Linux Distribution名称?

前端之家收集整理的这篇文章主要介绍了regex – 如何使用shell脚本查找Linux Distribution名称?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在编写一个shell脚本,其中我需要当前的操作系统名称以使其通用.喜欢:

if [ $Operating_System == "CentOS" ]
then
    echo "CentOS";
    # Do this
elif [ $Operating_System == "Ubuntu" ]
then
    echo "Ubuntu";
    # Do that
else
    echo "Unsupported Operating System";
fi

怎么可能?在lsb_release -a命令或其他地方应用正则表达式?

谢谢..

最佳答案
$lsb_release -i
Distributor ID: Fedora
$lsb_release -i | cut -f 2-
Fedora
原文链接:https://www.f2er.com/linux/440463.html

猜你在找的Linux相关文章